colorify
Version:
a collection of color tools
13 lines (11 loc) • 309 B
JavaScript
exports.friendlyName = function (str) {
// capitalize first letter
str = str.charAt(0).toUpperCase() + str.slice(1);
// split capitals
str = str.replace(/([a-z])([A-Z])/g, '$1 $2');
// CCW
str = str.replace('CCW', '(Counter Clockwise)');
// CW
str = str.replace('CW', '(Clockwise)');
return str;
};