@varlet/shared 2.10.0-alpha.1682067841655 → 2.10.0-alpha.1682265464192
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/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -17,3 +17,4 @@ export declare const bigCamelize: (s: string) => string;
|
|
|
17
17
|
export declare const camelize: (s: string) => string;
|
|
18
18
|
export declare const kebabCase: (s: string) => string;
|
|
19
19
|
export declare const find: <T>(arr: T[], callback: (item: T, index: number, array: T[]) => any, from?: 'start' | 'end') => [T, number] | [null, -1];
|
|
20
|
+
export declare const normalizeToArray: <T>(value: T | T[]) => T[];
|
package/lib/index.js
CHANGED