Skip to content

Instantly share code, notes, and snippets.

@xcodebuild
Created February 27, 2017 15:42
Show Gist options
  • Save xcodebuild/5881010e6bd67de8e15396b96faa6113 to your computer and use it in GitHub Desktop.
Save xcodebuild/5881010e6bd67de8e15396b96faa6113 to your computer and use it in GitHub Desktop.
function exchange(str, a, b) {
return str.split(a).map(function(item){return item.replace(new RegExp(b, 'g'), a)}).join(b);
}
function safeSingleQuote(str) {
str = exchange(str, "'", '"');
return exchange(JSON.stringify(str), "'", '"');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment