tanyanfei 2effbd93de init пре 5 година
..
.github 2effbd93de init пре 5 година
node_modules 2effbd93de init пре 5 година
test 2effbd93de init пре 5 година
.editorconfig 2effbd93de init пре 5 година
.eslintignore 2effbd93de init пре 5 година
.eslintrc 2effbd93de init пре 5 година
.nycrc 2effbd93de init пре 5 година
CHANGELOG.md 2effbd93de init пре 5 година
LICENSE 2effbd93de init пре 5 година
README.md 2effbd93de init пре 5 година
auto.js 2effbd93de init пре 5 година
implementation.js 2effbd93de init пре 5 година
index.js 2effbd93de init пре 5 година
package.json 2effbd93de init пре 5 година
polyfill.js 2effbd93de init пре 5 година
shim.js 2effbd93de init пре 5 година

README.md

String.prototype.padStart Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

An ES2017 spec-compliant String.prototype.padStart shim. Invoke its "shim" method to shim String.prototype.padStart if it is unavailable.

This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec.

Most common usage:

var padStart = require('string.prototype.padstart');

assert(padStart('foo', 5, 'bar') === 'bafoo');

padStart.shim();

assert(padStart('foo', 2) === 'foo'.padStart(2));

Tests

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