@ztimson/utils 0.23.13 → 0.23.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +138 -129
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +138 -129
- package/dist/index.mjs.map +1 -1
- package/dist/string.d.ts +4 -0
- package/package.json +1 -1
package/dist/string.d.ts
CHANGED
|
@@ -14,6 +14,10 @@ export declare const SYMBOL_LIST = "~`!@#$%^&*()_-+={[}]|\\:;\"'<,>.?/";
|
|
|
14
14
|
* String of all letters, numbers & symbols
|
|
15
15
|
*/
|
|
16
16
|
export declare const CHAR_LIST: string;
|
|
17
|
+
/**
|
|
18
|
+
* Converts text to camel case
|
|
19
|
+
*/
|
|
20
|
+
export declare function camelCase(text?: string): string;
|
|
17
21
|
/**
|
|
18
22
|
* Convert number of bytes into a human-readable size
|
|
19
23
|
*
|