Skip to content

Instantly share code, notes, and snippets.

@alvin2ye
Created September 1, 2009 09:11
Show Gist options
  • Save alvin2ye/178998 to your computer and use it in GitHub Desktop.
Save alvin2ye/178998 to your computer and use it in GitHub Desktop.
remove_blank_line
function remove_blank_line(txt) {
return txt.replace(/^\s*\n/gm, '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment