pangea-helpers 1.3.44 → 1.3.45

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.
@@ -1,3 +1,3 @@
1
1
  export declare function sumWithUnits(first: string, ...rest: string[]): string;
2
2
  export declare function roundNumber(number: number, roundTo: number, roundDirection?: 'round' | 'ceil' | 'floor'): number;
3
- export declare function roundDecimals(number: number, decimals: number): number;
3
+ export declare function roundDecimals(number: number, decimals?: number): number;
@@ -4,6 +4,7 @@ export declare function getFirstChartInUppercase<T extends string>(str: T): Capi
4
4
  export declare function camelToSnake(str: string): string;
5
5
  export declare function camelToUpperSnake(str: string): string;
6
6
  export declare function camelToKebab(str: string): string;
7
+ export declare function normalizeText(text: string): string;
7
8
  export declare function generateCode(length: number): string;
8
9
  export declare const accentMap: {
9
10
  a: string;