Skip to content

Instantly share code, notes, and snippets.

@otaviocorrea
Created January 19, 2021 16:19
Show Gist options
  • Save otaviocorrea/c7fb9d982eaa6994ad6038f1510f9b80 to your computer and use it in GitHub Desktop.
Save otaviocorrea/c7fb9d982eaa6994ad6038f1510f9b80 to your computer and use it in GitHub Desktop.
Function for print lines and spaces of texts with javascript, Svelte, React e etc.
const DoWhiteSpace = (text) => {
const spacesRegexp = /\x20/g, newLineRegexp = /\n/g;
return text.replace(spacesRegexp, ' ').replace(newLineRegexp, '<br>');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment