Skip to content

Instantly share code, notes, and snippets.

@vjeux
Created January 20, 2017 19:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vjeux/40c46d7b4ede75880ea17b2c4e8812b2 to your computer and use it in GitHub Desktop.
Save vjeux/40c46d7b4ede75880ea17b2c4e8812b2 to your computer and use it in GitHub Desktop.
if (shouldUseSingleQuote) {
return "'" + raw.slice(1, -1).replace(/\\"/g, '"').replace(/'/g, "\\'") + "'";
} else {
return '"' + raw.slice(1, -1).replace(/\\'/g, "'").replace(/"/g, '\\"') + '"';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment