Skip to content

Instantly share code, notes, and snippets.

@mindon
Last active August 29, 2015 13:57
Show Gist options
  • Save mindon/9499775 to your computer and use it in GitHub Desktop.
Save mindon/9499775 to your computer and use it in GitHub Desktop.
Replace white space safely with  
var s = "a b c";
s = s.replace(/ /g, '  '); // keep the text wrappable
// s = s.replace(/ /g, ' '); // failed to wrap
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment