Skip to content
This repository has been archived by the owner on Mar 17, 2021. It is now read-only.

Commit

Permalink
Skip template string change.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmeurer committed Oct 1, 2017
1 parent eb66965 commit 4d69e2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ module.exports = function(content) {
content = JSON.stringify(content)
.replace(/\u2028/g, '\\u2028')
.replace(/\u2029/g, '\\u2029');
return `module.exports = ${content}`;
return "module.exports = " + content;
}

0 comments on commit 4d69e2a

Please sign in to comment.