10 lines
155 B
JavaScript
Raw Normal View History

2022-03-17 16:54:37 +01:00
'use strict';
2022-04-29 09:04:24 +02:00
2022-03-17 16:54:37 +01:00
const _ = require('lodash');
2022-08-08 23:33:39 +02:00
const pascalCase = (string) => {
2022-04-06 16:58:11 +02:00
return _.upperFirst(_.camelCase(string));
2022-03-17 16:54:37 +01:00
};
module.exports = pascalCase;