cmy 02a04f55a0 2023-3-15 2 лет назад
..
.github 02a04f55a0 2023-3-15 2 лет назад
test 02a04f55a0 2023-3-15 2 лет назад
.eslintrc 02a04f55a0 2023-3-15 2 лет назад
.travis.yml 02a04f55a0 2023-3-15 2 лет назад
CHANGELOG.md 02a04f55a0 2023-3-15 2 лет назад
LICENSE 02a04f55a0 2023-3-15 2 лет назад
README.md 02a04f55a0 2023-3-15 2 лет назад
auto.js 02a04f55a0 2023-3-15 2 лет назад
implementation.js 02a04f55a0 2023-3-15 2 лет назад
index.js 02a04f55a0 2023-3-15 2 лет назад
package.json 02a04f55a0 2023-3-15 2 лет назад
polyfill.js 02a04f55a0 2023-3-15 2 лет назад
shim.js 02a04f55a0 2023-3-15 2 лет назад

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