katwhite 2bb8a30479 i hope this works 5 лет назад
..
test 2bb8a30479 i hope this works 5 лет назад
.eslintrc 2bb8a30479 i hope this works 5 лет назад
.jscs.json 2bb8a30479 i hope this works 5 лет назад
.npmignore 2bb8a30479 i hope this works 5 лет назад
.travis.yml 2bb8a30479 i hope this works 5 лет назад
CHANGELOG.md 2bb8a30479 i hope this works 5 лет назад
LICENSE 2bb8a30479 i hope this works 5 лет назад
README.md 2bb8a30479 i hope this works 5 лет назад
implementation.js 2bb8a30479 i hope this works 5 лет назад
index.js 2bb8a30479 i hope this works 5 лет назад
package.json 2bb8a30479 i hope this works 5 лет назад
polyfill.js 2bb8a30479 i hope this works 5 лет назад
shim.js 2bb8a30479 i hope this works 5 лет назад

README.md

String.prototype.padStart Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

browser support

An ES7 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 proposal.

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