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