lodash title case code example
Example: lodash pascal case
import {camelCase, toUpper} from 'lodash';
const pascalCase = str => camelCase(str).replace(/^(.)/, toUpper)
import {camelCase, toUpper} from 'lodash';
const pascalCase = str => camelCase(str).replace(/^(.)/, toUpper)