UNPKG

inline-assets

Version:

Inline External Assets of HTML/CSS Files

6 lines (4 loc) 176 B
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(); };