string.prototype.padleft

2.1.0 • Public • Published

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

Package Sidebar

Install

npm i string.prototype.padleft

Weekly Downloads

18

Version

2.1.0

License

MIT

Unpacked Size

17.4 kB

Total Files

17

Last publish

Collaborators

  • ljharb