UNPKG

superflected

Version:

A port of ActiveSupport's inflector to Node.js

7 lines (6 loc) 178 B
export function capitalize(str: string | null | undefined) { if (str === null || str === undefined) { return ""; } return str.charAt(0).toUpperCase() + str.slice(1); }