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