Skip to content

Instantly share code, notes, and snippets.

@itsdonnix
Created February 21, 2023 07:52
Show Gist options
  • Save itsdonnix/349c37833de333fc833fcbfd9fadecbf to your computer and use it in GitHub Desktop.
Save itsdonnix/349c37833de333fc833fcbfd9fadecbf to your computer and use it in GitHub Desktop.
Javascript Snippets

Javascript Snippets

String Manipulation

  • Remove multiline string into one-line
    function stringToOneLine(str) {
      return String(str).replace(/[\t\r\n ]+/g, ' ').trim()
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment