File size: 152 Bytes
d9494a5
 
 
 
1
2
3
4
5
import camelCase from 'lodash.camelcase';
import { capitalize } from '@/utils';

export const pascalCase = (str: string) => capitalize(camelCase(str));