diff options
Diffstat (limited to 'node_modules/trim-right/readme.md')
-rw-r--r-- | node_modules/trim-right/readme.md | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/node_modules/trim-right/readme.md b/node_modules/trim-right/readme.md deleted file mode 100644 index 0a4438a..0000000 --- a/node_modules/trim-right/readme.md +++ /dev/null @@ -1,30 +0,0 @@ -# trim-right [](https://travis-ci.org/sindresorhus/trim-right) - -> Similar to [`String#trim()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/Trim) but removes only whitespace on the right - - -## Install - -``` -$ npm install --save trim-right -``` - - -## Usage - -```js -var trimRight = require('trim-right'); - -trimRight(' unicorn '); -//=> ' unicorn' -``` - - -## Related - -- [`trim-left`](https://github.com/sindresorhus/trim-left) - Similar to `String#trim()` but removes only whitespace on the left - - -## License - -MIT © [Sindre Sorhus](http://sindresorhus.com) |