Sha256: 0c0cbd37e50b1f5bb22126c26c5071eb42c06eae186765c13f0e05fbde17a98b
Contents?: true
Size: 337 Bytes
Versions: 320
Compression:
Stored size: 337 Bytes
Contents
'use strict'; // https://github.com/tc39/proposal-string-pad-start-end var $export = require('./_export') , $pad = require('./_string-pad'); $export($export.P, 'String', { padEnd: function padEnd(maxLength /*, fillString = ' ' */){ return $pad(this, maxLength, arguments.length > 1 ? arguments[1] : undefined, false); } });
Version data entries
320 entries across 8 versions & 3 rubygems