Irina Glushko 2389e7160b HW1 done | vor 3 Jahren | |
---|---|---|
.. | ||
test | vor 3 Jahren | |
.editorconfig | vor 3 Jahren | |
.eslintignore | vor 3 Jahren | |
.eslintrc | vor 3 Jahren | |
.nycrc | vor 3 Jahren | |
CHANGELOG.md | vor 3 Jahren | |
LICENSE | vor 3 Jahren | |
README.md | vor 3 Jahren | |
auto.js | vor 3 Jahren | |
implementation.js | vor 3 Jahren | |
index.js | vor 3 Jahren | |
package.json | vor 3 Jahren | |
polyfill.js | vor 3 Jahren | |
shim.js | vor 3 Jahren |
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 Symbol
s.
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());
Simply clone the repo, npm install
, and run npm test