Skip to content
This repository was archived by the owner on Aug 20, 2018. It is now read-only.

Commit 939a8cb

Browse files
ajhyndmanjoshwiens
authored andcommitted
fix: escape newline/paragraph separators (#18)
1 parent dbf1fa5 commit 939a8cb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ module.exports = function(source) {
88
var value = typeof source === "string" ? JSON.parse(source) : source;
99
var options = loaderUtils.getOptions(this) || {};
1010
value = JSON.stringify(value)
11+
.replace(/\u2028/g, '\\u2028')
12+
.replace(/\u2029/g, '\\u2029');
1113
value = options.stringify ? `'${value}'` : value
1214
var module = this.version && this.version >= 2 ? `export default ${value};` : `module.exports = ${value};`;
1315
return module

0 commit comments

Comments
 (0)