string.prototype.padend
ES2017 spec-compliant String.prototype.padEnd shim.
Last updated 5 years ago by ljharb .
MIT · Repository · Bugs · Original npm
$ cnpm install string.prototype.padend 
SYNC missed versions from official npm registry.

String.prototype.padEnd Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

An ES2017 spec-compliant String.prototype.padEnd shim. Invoke its "shim" method to shim String.prototype.padEnd if it is unavailable.

This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec.

Most common usage:

var padEnd = require('string.prototype.padend');

assert(padEnd('foo', 5, 'bar') === 'fooba');

padEnd.shim();

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

Tests

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

Current Tags

  • 3.1.2                                ...           latest (5 years ago)

2 Versions

  • 3.1.2                                ...           5 years ago
  • 3.1.0                                ...           6 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (3)
Dev Dependencies (10)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org