katwhite 2bb8a30479 i hope this works 4 jaren geleden
..
test 2bb8a30479 i hope this works 4 jaren geleden
.eslintrc 2bb8a30479 i hope this works 4 jaren geleden
.jscs.json 2bb8a30479 i hope this works 4 jaren geleden
.npmignore 2bb8a30479 i hope this works 4 jaren geleden
.travis.yml 2bb8a30479 i hope this works 4 jaren geleden
CHANGELOG.md 2bb8a30479 i hope this works 4 jaren geleden
LICENSE 2bb8a30479 i hope this works 4 jaren geleden
README.md 2bb8a30479 i hope this works 4 jaren geleden
implementation.js 2bb8a30479 i hope this works 4 jaren geleden
index.js 2bb8a30479 i hope this works 4 jaren geleden
package.json 2bb8a30479 i hope this works 4 jaren geleden
polyfill.js 2bb8a30479 i hope this works 4 jaren geleden
shim.js 2bb8a30479 i hope this works 4 jaren geleden

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