Caso de Lodash Pascal

import {camelCase, toUpper} from 'lodash';

const pascalCase = str => camelCase(str).replace(/^(.)/, toUpper)
Famous Flatworm