UNPKG

@nestjsplus/lib-starter

Version:

Boilerplate for building installable NestJS libraries

12 lines (9 loc) 241 B
export function lowerCase(str: string): string { return str.toLocaleLowerCase(); } export function upperCase(str: string): string { return str.toUpperCase(); } export function dashToUnderscore(str) { return str.replace(/-/g, '_'); }