Skip to content

Instantly share code, notes, and snippets.

@sebnilsson
Created September 3, 2013 11:53
Show Gist options
  • Save sebnilsson/6422848 to your computer and use it in GitHub Desktop.
Save sebnilsson/6422848 to your computer and use it in GitHub Desktop.
Get the first row of text
function firstRowText(text) {
return text.match(/^(.*)$/m)[0] || '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment