UNPKG

@nestjs/cli

Version:

Nest - modern, fast, powerful node.js web framework (@cli)

9 lines (8 loc) 293 B
/** * * @param str * @returns formated string * @description normalizes input to supported path and file name format. * Changes camelCase strings to kebab-case, replaces spaces with dash and keeps underscores. */ export declare function normalizeToKebabOrSnakeCase(str: string): string;