2.0.0 • Published 8 years ago
trimmer v2.0.0
Trimmer
Trim characters from either side of a string.
Installation
npm install trimmer --saveAPI
var trim = require('trimmer')- trim(string [, characters])
- trim.left(string [, characters])
- trim.right(string [, characters])
P.S.: characters can be one of either an string, array or function.
trim('  test  ') //=> 'test'
trim.left('  test  ') //=> 'test  '
trim.right('  test  ') //=> '  test'
trim('test', 't') //=> 'es'
trim('testing', 'ing') //=> 'test'
trim.left('test', 't') //=> 'est'
trim.right('test', 't') //=> 'tes'License
MIT