mirror of
https://github.com/strapi/strapi.git
synced 2025-07-09 18:13:00 +00:00
10 lines
153 B
JavaScript
10 lines
153 B
JavaScript
'use strict';
|
|
|
|
const _ = require('lodash');
|
|
|
|
const pascalCase = string => {
|
|
return _.upperFirst(_.camelCase(string));
|
|
};
|
|
|
|
module.exports = pascalCase;
|