UNPKG

@lion/form-core

Version:

Form-core contains all essential building blocks for creating form fields and fieldsets

10 lines (9 loc) 198 B
/** * Return PascalCased version of the camelCased string * * @param {string} str * @return {string} */ export function pascalCase(str) { return str.charAt(0).toUpperCase() + str.slice(1); }