string.prototype.trimright

2.1.3 • Public • Published

String.prototype.trimRight Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

browser support

A ES2019-spec-compliant String.prototype.trimRight shim. Invoke its "shim" method to shim String.prototype.trimRight if it is unavailable.

This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec. In an ES6 environment, it will also work properly with Symbols.

Most common usage:

var trimRight = require('string.prototype.trimright');
 
assert(trimRight(' \t\n\t\n') === '\t\n');
 
if (!String.prototype.trimRight) {
    trimRight.shim();
}
 
assert(trimRight(' \t\n\t\n ') === ' \t\n\t\n '.trimRight());

Tests

Simply clone the repo, npm install, and run npm test

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.1.3
    37,579
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 2.1.3
    37,579
  • 2.1.2
    377,283
  • 2.1.1
    357,359
  • 2.1.0
    199,652
  • 2.0.0
    8,422
  • 1.0.1
    48

Package Sidebar

Install

npm i string.prototype.trimright

Weekly Downloads

980,343

Version

2.1.3

License

MIT

Unpacked Size

18.1 kB

Total Files

23

Last publish

Collaborators

  • ljharb