keksAccountGUI/node_modulesOLD/string.prototype.padend
Kekskurse 8e5ce9e324 Update Framework 2019-08-11 20:48:02 +02:00
..
test Update Framework 2019-08-11 20:48:02 +02:00
.eslintrc Update Framework 2019-08-11 20:48:02 +02:00
.jscs.json Update Framework 2019-08-11 20:48:02 +02:00
.npmignore Update Framework 2019-08-11 20:48:02 +02:00
.travis.yml Update Framework 2019-08-11 20:48:02 +02:00
CHANGELOG.md Update Framework 2019-08-11 20:48:02 +02:00
LICENSE Update Framework 2019-08-11 20:48:02 +02:00
README.md Update Framework 2019-08-11 20:48:02 +02:00
implementation.js Update Framework 2019-08-11 20:48:02 +02:00
index.js Update Framework 2019-08-11 20:48:02 +02:00
package.json Update Framework 2019-08-11 20:48:02 +02:00
polyfill.js Update Framework 2019-08-11 20:48:02 +02:00
shim.js Update Framework 2019-08-11 20:48:02 +02:00

README.md

String.prototype.padEnd Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

browser support

An ES7 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 proposal.

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