utils-lib-js 2.0.14 → 2.0.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/README.en.md +95 -82
- package/README.md +13 -0
- package/dist/bundle/base.d.ts +2 -0
- package/dist/bundle/index.d.ts +1 -0
- package/dist/bundle/index.js +3 -15
- package/dist/cjs/base.d.ts +2 -0
- package/dist/cjs/index.d.ts +1 -0
- package/dist/cjs/index.js +353 -6408
- package/dist/esm/base.d.ts +2 -0
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/index.js +308 -6365
- package/dist/umd/base.d.ts +2 -0
- package/dist/umd/index.d.ts +1 -0
- package/dist/umd/index.js +353 -6408
- package/package.json +12 -12
package/dist/umd/base.d.ts
CHANGED
|
@@ -5,11 +5,13 @@ export declare const urlSplit: IUrlSplit;
|
|
|
5
5
|
export declare const urlJoin: IUrlJoin;
|
|
6
6
|
export declare const getType: IGetType<types>;
|
|
7
7
|
export declare const getTypeByList: IGetTypeByList;
|
|
8
|
+
export declare const toKebabCase: (camelCase: string, separator?: string) => string;
|
|
8
9
|
declare const _default: {
|
|
9
10
|
randomNum: IRandomNum;
|
|
10
11
|
urlSplit: IUrlSplit;
|
|
11
12
|
urlJoin: IUrlJoin;
|
|
12
13
|
getType: IGetType<types>;
|
|
13
14
|
getTypeByList: IGetTypeByList;
|
|
15
|
+
toKebabCase: (camelCase: string, separator?: string) => string;
|
|
14
16
|
};
|
|
15
17
|
export default _default;
|
package/dist/umd/index.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ declare const _default: {
|
|
|
52
52
|
urlJoin: import("./types").IUrlJoin;
|
|
53
53
|
getType: import("./types").IGetType<import("./static").types>;
|
|
54
54
|
getTypeByList: import("./types").IGetTypeByList;
|
|
55
|
+
toKebabCase: (camelCase: string, separator?: string) => string;
|
|
55
56
|
getValue: import("./types").IGetValue;
|
|
56
57
|
setValue: import("./types").ISetValue;
|
|
57
58
|
mixIn: import("./types").IMixIn;
|