@auttam/easycli
Version:
A quick and easy way of creating cli for your npm package.
9 lines (8 loc) • 371 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[];