@trezor/utils
Advanced tools
Comparing version 9.0.19 to 9.0.21
@@ -0,1 +1,9 @@ | ||
# 9.0.21 | ||
- chore(suite): make better mapping for colors (481c82f56e) | ||
# 9.0.20 | ||
- fix(mobile): fix broken formatting on iOS (#10893) (4e5d028907) | ||
# 9.0.19 | ||
@@ -2,0 +10,0 @@ |
@@ -1,2 +0,2 @@ | ||
export declare const capitalizeFirstLetter: (s: string) => string; | ||
export declare const capitalizeFirstLetter: <T extends string = string>(str: T) => Capitalize<T>; | ||
//# sourceMappingURL=capitalizeFirstLetter.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.capitalizeFirstLetter = void 0; | ||
const capitalizeFirstLetter = (s) => s.charAt(0).toUpperCase() + s.slice(1); | ||
const capitalizeFirstLetter = (str) => (str.charAt(0).toUpperCase() + str.slice(1)); | ||
exports.capitalizeFirstLetter = capitalizeFirstLetter; | ||
//# sourceMappingURL=capitalizeFirstLetter.js.map |
@@ -12,2 +12,3 @@ export * from './arrayDistinct'; | ||
export * from './createDeferred'; | ||
export * from './createDeferredManager'; | ||
export * from './createTimeoutPromise'; | ||
@@ -14,0 +15,0 @@ export * as enumUtils from './enumUtils'; |
@@ -16,2 +16,3 @@ "use strict"; | ||
tslib_1.__exportStar(require("./createDeferred"), exports); | ||
tslib_1.__exportStar(require("./createDeferredManager"), exports); | ||
tslib_1.__exportStar(require("./createTimeoutPromise"), exports); | ||
@@ -18,0 +19,0 @@ exports.enumUtils = tslib_1.__importStar(require("./enumUtils")); |
{ | ||
"name": "@trezor/utils", | ||
"version": "9.0.19", | ||
"version": "9.0.21", | ||
"author": "Trezor <info@trezor.io>", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/utils", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
48302
86
911