Skip to content

Commit

Permalink
fix for line endings on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Jul 24, 2017
1 parent b409d9c commit 57692ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/binCases/module/module-bind/post-loader.js
@@ -1,4 +1,4 @@
module.exports = function(source) {
console.log('post-loaded ' + source.replace('\n', ''))
console.log("post-loaded " + source.replace(/\r?\n/g, ""));
return source;
};
2 changes: 1 addition & 1 deletion test/binCases/module/module-bind/pre-loader.js
@@ -1,4 +1,4 @@
module.exports = function(source) {
console.log('pre-loaded ' + source.replace('\n', ''))
console.log("pre-loaded " + source.replace(/\r?\n/g, ""));
return source;
};

0 comments on commit 57692ae

Please sign in to comment.