stevemao / trim-off-newlines

Similar to String#trim() but removes only newlines

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

trim-off-newlines Build Status

Similar to String#trim() but removes only newlines

Install

$ npm install --save trim-off-newlines

Usage

var trimOffNewlines = require('trim-off-newlines');

trimOffNewlines('\n\nunicorns\n\n');
//=> 'unicorns'

Related

  • trim-left - Similar to String#trim() but removes only whitespace on the left
  • trim-right - Similar to String#trim() but removes only whitespace on the right

License

MIT © Steve Mao

About

Similar to String#trim() but removes only newlines

License:MIT License


Languages

Language:JavaScript 100.0%