prc b6c02717e6 Upload complete no-internet building environment. 1 year ago
..
test b6c02717e6 Upload complete no-internet building environment. 1 year ago
.editorconfig b6c02717e6 Upload complete no-internet building environment. 1 year ago
.eslintrc b6c02717e6 Upload complete no-internet building environment. 1 year ago
.nycrc b6c02717e6 Upload complete no-internet building environment. 1 year ago
CHANGELOG.md b6c02717e6 Upload complete no-internet building environment. 1 year ago
LICENSE b6c02717e6 Upload complete no-internet building environment. 1 year ago
README.md b6c02717e6 Upload complete no-internet building environment. 1 year ago
auto.js b6c02717e6 Upload complete no-internet building environment. 1 year ago
implementation.js b6c02717e6 Upload complete no-internet building environment. 1 year ago
index.js b6c02717e6 Upload complete no-internet building environment. 1 year ago
package.json b6c02717e6 Upload complete no-internet building environment. 1 year ago
polyfill.js b6c02717e6 Upload complete no-internet building environment. 1 year ago
shim.js b6c02717e6 Upload complete no-internet building environment. 1 year ago

README.md

String.prototype.trimEnd Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

An ES2019-spec-compliant String.prototype.trimEnd shim. Invoke its "shim" method to shim String.prototype.trimEnd 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 trimEnd = require('string.prototype.trimend');

assert(trimEnd(' \t\na \t\n') === 'a \t\n');

if (!String.prototype.trimEnd) {
	trimEnd.shim();
}

assert(trimEnd(' \t\na \t\n ') === ' \t\na \t\n '.trimEnd());

Tests

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