@meteorwallet/utils
Advanced tools
Comparing version 0.35.0 to 0.36.0
import { convertToNamingStyle } from "./string_utils/convertToNamingStyle"; | ||
import { getTextLogicalParts } from "./string_utils/getTextLogicalParts"; | ||
import { inspectTextNaming } from "./string_utils/inspectTextNaming"; | ||
import { shortenMiddleOut } from "./string_utils/shortenMiddleOut"; | ||
export declare const notNullEmpty: (str: string | null | undefined) => str is string; | ||
@@ -14,4 +15,5 @@ export declare const nullEmpty: (str: string | null | undefined) => str is null | undefined | ""; | ||
getTextLogicalParts: typeof getTextLogicalParts; | ||
shortenMiddleOut: typeof shortenMiddleOut; | ||
}; | ||
export {}; | ||
//# sourceMappingURL=string.utils.d.ts.map |
import { convertToNamingStyle } from "./string_utils/convertToNamingStyle"; | ||
import { getTextLogicalParts } from "./string_utils/getTextLogicalParts"; | ||
import { inspectTextNaming } from "./string_utils/inspectTextNaming"; | ||
import { shortenMiddleOut } from "./string_utils/shortenMiddleOut"; | ||
export const notNullEmpty = (str) => { | ||
@@ -20,2 +21,3 @@ return str != null && str.length > 0; | ||
getTextLogicalParts, | ||
shortenMiddleOut, | ||
}; |
{ | ||
"name": "@meteorwallet/utils", | ||
"version": "0.35.0", | ||
"version": "0.36.0", | ||
"description": "Utility functions used in Meteor Wallet", | ||
@@ -5,0 +5,0 @@ "files": [ |
Sorry, the diff of this file is not supported yet
54952
100
1190