@opfr/utils-lang 0.0.38 → 0.0.39

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/string.d.ts CHANGED
@@ -10,3 +10,5 @@ export declare const numberToOrdinal: (nb: number) => string | null;
10
10
  export declare const trim: (str: string) => string;
11
11
  export declare const breakWords: (str: string) => string[];
12
12
  export declare const isString: (str: unknown) => str is string;
13
+ export declare const camelcase: (str: string) => string;
14
+ export declare const pascalCase: (str: string) => string;