UNPKG

inline-assets

Version:

Inline External Assets of HTML/CSS Files

7 lines (6 loc) 212 B
module.exports = function unquote(str, quoteChar) { quoteChar = quoteChar || '"'; if (str[0] === quoteChar && str[str.length - 1] === quoteChar) return str.slice(1, str.length - 1); else return str; };