katwhite 2bb8a30479 i hope this works %!s(int64=5) %!d(string=hai) anos
..
test 2bb8a30479 i hope this works %!s(int64=5) %!d(string=hai) anos
.eslintrc 2bb8a30479 i hope this works %!s(int64=5) %!d(string=hai) anos
.jscs.json 2bb8a30479 i hope this works %!s(int64=5) %!d(string=hai) anos
.npmignore 2bb8a30479 i hope this works %!s(int64=5) %!d(string=hai) anos
.travis.yml 2bb8a30479 i hope this works %!s(int64=5) %!d(string=hai) anos
CHANGELOG.md 2bb8a30479 i hope this works %!s(int64=5) %!d(string=hai) anos
LICENSE 2bb8a30479 i hope this works %!s(int64=5) %!d(string=hai) anos
README.md 2bb8a30479 i hope this works %!s(int64=5) %!d(string=hai) anos
implementation.js 2bb8a30479 i hope this works %!s(int64=5) %!d(string=hai) anos
index.js 2bb8a30479 i hope this works %!s(int64=5) %!d(string=hai) anos
package.json 2bb8a30479 i hope this works %!s(int64=5) %!d(string=hai) anos
polyfill.js 2bb8a30479 i hope this works %!s(int64=5) %!d(string=hai) anos
shim.js 2bb8a30479 i hope this works %!s(int64=5) %!d(string=hai) anos

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