blob: b9d16283a7c847174f7793b91aa68fb72e37f477 [file] [log] [blame]
var trim = require('./trim');
module.exports = function underscored(str) {
return trim(str).replace(/([a-z\d])([A-Z]+)/g, '$1_$2').replace(/[-\s]+/g, '_').toLowerCase();
};