Tennessee Gibbs 0304752480 added pages to master | 6 лет назад | |
---|---|---|
.. | ||
index.js | 6 лет назад | |
license | 6 лет назад | |
package.json | 6 лет назад | |
readme.md | 6 лет назад |
Trim newlines from the start and/or end of a string
$ npm install --save trim-newlines
var trimNewlines = require('trim-newlines');
trimNewlines('\nunicorn\r\n');
//=> 'unicorn'
Trim from the start and end of a string.
Trim from the start of a string.
Trim from the end of a string.
String#trim()
but removes only whitespace on the leftString#trim()
but removes only whitespace on the right.MIT © Sindre Sorhus