Skip to content

Instantly share code, notes, and snippets.

@daltonmenezes
Created September 3, 2019 05:07
Show Gist options
  • Save daltonmenezes/6b2c30805b213d28a9e9c51db224d1ae to your computer and use it in GitHub Desktop.
Save daltonmenezes/6b2c30805b213d28a9e9c51db224d1ae to your computer and use it in GitHub Desktop.
A function to minify strings in JavaScript.
const multilineString = `
This is...
a multiline string.
`
const minify = it => it.replace(/\s+/g, '')
minify(multilineString)
// Thisis...amultilinestring.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment