You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Andrea Gaertner 668e16c315 Einkaufsliste application_liste hinzugefügt 3 years ago
..
.github/workflows Einkaufsliste application_liste hinzugefügt 3 years ago
test Einkaufsliste application_liste hinzugefügt 3 years ago
.editorconfig Einkaufsliste application_liste hinzugefügt 3 years ago
.eslintrc Einkaufsliste application_liste hinzugefügt 3 years ago
.travis.yml Einkaufsliste application_liste hinzugefügt 3 years ago
CHANGELOG.md Einkaufsliste application_liste hinzugefügt 3 years ago
LICENSE Einkaufsliste application_liste hinzugefügt 3 years ago
README.md Einkaufsliste application_liste hinzugefügt 3 years ago
auto.js Einkaufsliste application_liste hinzugefügt 3 years ago
implementation.js Einkaufsliste application_liste hinzugefügt 3 years ago
index.js Einkaufsliste application_liste hinzugefügt 3 years ago
package.json Einkaufsliste application_liste hinzugefügt 3 years ago
polyfill.js Einkaufsliste application_liste hinzugefügt 3 years ago
shim.js Einkaufsliste application_liste hinzugefügt 3 years ago

README.md

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\na \t\n') === 'a \t\n');

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

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

Tests

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