mirror of
https://github.com/strapi/strapi.git
synced 2025-07-07 09:02:42 +00:00
9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
'use strict';
|
|
const _ = require('lodash');
|
|
|
|
const pascalCase = string => {
|
|
return _.startCase(_.camelCase(string)).replace(/ /g, '');
|
|
};
|
|
|
|
module.exports = pascalCase;
|