UNPKG

quixote

Version:

CSS unit and integration testing

14 lines (12 loc) 229 B
'use strict'; module.exports = function (str) { if (str.length === 1) { return str; } return str .replace(/^[_.\- ]+/, '') .toLowerCase() .replace(/[_.\- ]+(\w|$)/g, function (m, p1) { return p1.toUpperCase(); }); };