@ztimson/utils 0.22.4 → 0.22.6
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/csv.d.ts +1 -0
- package/dist/index.cjs +178 -140
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +178 -140
- package/dist/index.mjs.map +1 -1
- package/dist/string.d.ts +16 -0
- package/package.json +1 -1
package/dist/string.d.ts
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* String of all letters
|
|
3
|
+
*/
|
|
4
|
+
export declare const LETTER_LIST = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
5
|
+
/**
|
|
6
|
+
* String of all numbers
|
|
7
|
+
*/
|
|
8
|
+
export declare const NUMBER_LIST = "0123456789";
|
|
9
|
+
/**
|
|
10
|
+
* String of all symbols
|
|
11
|
+
*/
|
|
12
|
+
export declare const SYMBOL_LIST = "~`!@#$%^&*()_-+={[}]|\\:;\"'<,>.?/";
|
|
13
|
+
/**
|
|
14
|
+
* String of all letters, numbers & symbols
|
|
15
|
+
*/
|
|
16
|
+
export declare const CHAR_LIST: string;
|
|
1
17
|
/**
|
|
2
18
|
* Convert number of bytes into a human-readable size
|
|
3
19
|
*
|