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

Commit 83f6541

Browse files
joeheymingevilebottnawi
authored andcommittedNov 17, 2017
fix(index): escape invalid characters (#43)
* Handle special whitespace characters. If your raw text has a string with Line separator or Paragraph separator, they need to be handled outside of JSON.stringify: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#Issue_with_plain_JSON.stringify_for_use_as_JavaScript The fix here is to replace those characters as directed in the MDN article above. I also changed the formatting from tabs to 2 spaces :-p * Address code review. * Rename some variables. * Remove cacheable. Turns out cacheable is only used in webpack 1. So we are removing it.
1 parent e234bde commit 83f6541

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed
 

‎index.js

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
/*
2-
MIT License http://www.opensource.org/licenses/mit-license.php
3-
Author Tobias Koppers @sokra
2+
MIT License http://www.opensource.org/licenses/mit-license.php
3+
Author Tobias Koppers @sokra
44
*/
5-
module.exports = function(content) {
6-
this.cacheable && this.cacheable();
7-
this.value = content;
8-
return "module.exports = " + JSON.stringify(content);
5+
module.exports = function(source) {
6+
this.value = source;
7+
8+
var json = JSON.stringify(source)
9+
.replace(/\u2028/g, '\\u2028')
10+
.replace(/\u2029/g, '\\u2029');
11+
12+
return "module.exports = " + json;
913
}

0 commit comments

Comments
 (0)
This repository has been archived.