Removes all empty lines from a given string.
The string from which to remove empty lines.
strRemoveEmptyLines('Hello\n\nWorld\n\n!');;//=> 'Hello\nWorld\n!' Copy
strRemoveEmptyLines('Hello\n\nWorld\n\n!');;//=> 'Hello\nWorld\n!'
Generated using TypeDoc
Removes all empty lines from a given string.