Trim newlines from the start and/or end of a string
Looking to trim all whitespace, not just newlines? Use String#trim(), String#trimStart(), or String#trimEnd().
npm install trim-newlinesimport{trimNewlines,trimNewlinesStart,trimNewlinesEnd}from'trim-newlines';trimNewlines('\n🦄\n🦄\r\n');//=> '🦄\n🦄'trimNewlinesStart('\n🦄\r\n');//=> '🦄\r\n'trimNewlinesEnd('\n🦄\r\n');//=> '\n🦄'Trim from the start and end of a string.
Trim from the start of a string.
Trim from the end of a string.