UNPKG

inline-assets

Version:

Inline External Assets of HTML/CSS Files

7 lines (5 loc) 177 B
var makeString = require('./helper/makeString'); module.exports = function decapitalize(str) { str = makeString(str); return str.charAt(0).toLowerCase() + str.slice(1); };