UNPKG

template-nestjs-generator

Version:

A custom NestJS CRUD generator

16 lines (15 loc) 371 B
export function capitalize(str: string) { if (str === null || str === undefined) { return "" } if (typeof str !== "string") { return "" } return str .split(" ") .map( (palabra) => palabra.charAt(0).toUpperCase() + palabra.slice(1).toLowerCase() ) .join(" ") }