UNPKG

viewpoint

Version:
9 lines (8 loc) 186 B
module.exports = { pascalCase: function(str) { return str[0].toUpperCase() + str.slice(1); }, camelCase: function(str) { return str[0].toLowerCase() + str.slice(1); } };