Skip to content

Instantly share code, notes, and snippets.

@zzbo
Last active November 9, 2015 09:42
Show Gist options
  • Save zzbo/64aa3616ccf08718772a to your computer and use it in GitHub Desktop.
Save zzbo/64aa3616ccf08718772a to your computer and use it in GitHub Desktop.
module.exports = function(str){
return "module.exports = '"
+ str
.replace(/'/g, "\\'")
.replace(/\r\n|\r|\n/g, "\\n")
+ "';";
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment