UNPKG

@puq/names

Version:

The String Names Library provides a simple names function that takes a string input and returns all possible naming convention variants, such as camelCase, snake_case, CONSTANT_CASE, and more. Perfect for tasks like code generation, formatting standardiza

15 lines 231 B
export type NamesOption = { /** * prefix */ prefix?: string; /** * suffix */ suffix?: string; /** * wrapper */ wrapper?: string; }; //# sourceMappingURL=names-option.d.ts.map