import {camelCase, toUpper} from 'lodash'; const pascalCase = str => camelCase(str).replace(/^(.)/, toUpper)