@auttam/easycli
Version:
A quick and easy way of creating cli for your npm package.
10 lines (9 loc) • 471 B
TypeScript
export declare function hyphenate(name: string): string;
export declare function pascalCase(name: string): string;
export declare function camelCase(name: string): string;
export declare function separateWords(text: string): string;
export declare function filterList(list: string[], filter?: any | {
include?: string[];
exclude?: string[];
}): string[];
export declare function getPropertyValue(object: any, propertyName: any, defaultValue?: any): any;