UNPKG

@ozen-ui/kit

Version:

React component library

6 lines (5 loc) 229 B
export var toPascalCase = function (value) { return value .replace(/[-_]+(.)?/g, function (_, chr) { return (chr ? chr.toUpperCase() : ''); }) .replace(/^\w/, function (chr) { return chr.toUpperCase(); }); };