tanyanfei 2effbd93de init 5 yıl önce
..
.github 2effbd93de init 5 yıl önce
node_modules 2effbd93de init 5 yıl önce
test 2effbd93de init 5 yıl önce
.editorconfig 2effbd93de init 5 yıl önce
.eslintignore 2effbd93de init 5 yıl önce
.eslintrc 2effbd93de init 5 yıl önce
.nycrc 2effbd93de init 5 yıl önce
CHANGELOG.md 2effbd93de init 5 yıl önce
LICENSE 2effbd93de init 5 yıl önce
README.md 2effbd93de init 5 yıl önce
auto.js 2effbd93de init 5 yıl önce
implementation.js 2effbd93de init 5 yıl önce
index.js 2effbd93de init 5 yıl önce
package.json 2effbd93de init 5 yıl önce
polyfill.js 2effbd93de init 5 yıl önce
shim.js 2effbd93de init 5 yıl önce

README.md

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