![]() |
il y a 3 ans | |
---|---|---|
.. | ||
.github | il y a 3 ans | |
test | il y a 3 ans | |
.editorconfig | il y a 3 ans | |
.eslintrc | il y a 3 ans | |
.travis.yml | il y a 3 ans | |
CHANGELOG.md | il y a 3 ans | |
LICENSE | il y a 3 ans | |
README.md | il y a 3 ans | |
auto.js | il y a 3 ans | |
implementation.js | il y a 3 ans | |
index.js | il y a 3 ans | |
package.json | il y a 3 ans | |
polyfill.js | il y a 3 ans | |
shim.js | il y a 3 ans |
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