diff --git a/index.js b/index.js index 8bb8019..130d719 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,8 @@ -var REGEX = //g; +var REGEX = //g; module.exports = function(content) { this.cacheable && this.cacheable(); - return content.replace(REGEX, function(m, p) { return p }); + return content.replace(REGEX, function(m, p) { + return `"+${p}+"` + }); }