string.prototype.padleftdeprecated

ES7 spec-compliant String.prototype.padLeft shim.

Usage no npm install needed!

<script type="module">
  import stringPrototypePadleft from 'https://cdn.skypack.dev/string.prototype.padleft';
</script>

README

String.prototype.padLeft Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

browser support

An ES7 spec-compliant String.prototype.padLeft shim. Invoke its "shim" method to shim String.prototype.padLeft 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 padLeft = require('string.prototype.padleft');

assert(padLeft('foo', 5, 'bar') === 'bafoo');

padLeft.shim();

assert(padLeft('foo', 2)) === 'foo'.padLeft(2));

Tests

Simply clone the repo, npm install, and run npm test