Skip to content

Instantly share code, notes, and snippets.

@st98
Last active August 29, 2015 14:13
Show Gist options
  • Save st98/9e380be7a3f2192925e8 to your computer and use it in GitHub Desktop.
Save st98/9e380be7a3f2192925e8 to your computer and use it in GitHub Desktop.
/[\s\S]+/
/.+/.test('\n'); // => false
/[\s\S]+/.test('\n'); // => true
'/*hoge\n*/fuga*/'.replace(/\/\*[\s\S]*?\*\//g, ''); // => 'fuga*/'
document.body.innerHTML = document.body.innerHTML.replace(/\/\*[\s\S]*?\*\//g, '').replace(/\n{2,}/g, '\n\n');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment