install-nix-action/node_modules/string.prototype.trimleft
Domen Kožar 08403cd828
v5
2019-11-13 17:14:48 +01:00
..
test v5 2019-11-13 17:14:48 +01:00
.editorconfig v5 2019-11-13 17:14:48 +01:00
.eslintrc v5 2019-11-13 17:14:48 +01:00
.travis.yml v5 2019-11-13 17:14:48 +01:00
auto.js v5 2019-11-13 17:14:48 +01:00
CHANGELOG.md v5 2019-11-13 17:14:48 +01:00
implementation.js v5 2019-11-13 17:14:48 +01:00
index.js v5 2019-11-13 17:14:48 +01:00
LICENSE v5 2019-11-13 17:14:48 +01:00
package.json v5 2019-11-13 17:14:48 +01:00
polyfill.js v5 2019-11-13 17:14:48 +01:00
README.md v5 2019-11-13 17:14:48 +01:00
shim.js v5 2019-11-13 17:14:48 +01:00

String.prototype.trimLeft Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

browser support

A spec-proposal-compliant String.prototype.trimLeft shim. Invoke its "shim" method to shim String.prototype.trimLeft 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 trimLeft = require('string.prototype.trimleft');

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

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

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

Tests

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