hangul-util
Version:
Korean Hangul Utils
9 lines (8 loc) • 605 B
TypeScript
export declare function isNumber(input: any): boolean;
export declare function splitByKey(key?: string): string[];
export declare function getNestedProperty(key?: string[] | string, object?: any): any;
export declare function zeroPad(string?: number | string, pow?: number, pad?: string): string;
export declare function chunkAtEnd(value?: string, n?: number): string[];
export declare function makePercentByObject(object: any): Record<string, number>;
export declare function reverseByObject(object: any): Record<string | number, string>;
export declare function reverseByArray(array: any): any;