tanyanfei 2effbd93de init 4 years ago
..
.github 2effbd93de init 4 years ago
node_modules 2effbd93de init 4 years ago
test 2effbd93de init 4 years ago
.editorconfig 2effbd93de init 4 years ago
.eslintignore 2effbd93de init 4 years ago
.eslintrc 2effbd93de init 4 years ago
.nycrc 2effbd93de init 4 years ago
CHANGELOG.md 2effbd93de init 4 years ago
LICENSE 2effbd93de init 4 years ago
README.md 2effbd93de init 4 years ago
auto.js 2effbd93de init 4 years ago
implementation.js 2effbd93de init 4 years ago
index.js 2effbd93de init 4 years ago
package.json 2effbd93de init 4 years ago
polyfill.js 2effbd93de init 4 years ago
shim.js 2effbd93de init 4 years ago

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