UNPKG

react-kiwi-dropdown

Version:

A minimal, easy-to-use and highly adjustable dropdown component made with ReactJS.

12 lines (10 loc) 501 B
'use strict'; var internalStringPad = require('../internals/string-pad'); var WEBKIT_BUG = require('../internals/webkit-string-pad-bug'); // `String.prototype.padEnd` method // https://tc39.github.io/ecma262/#sec-string.prototype.padend require('../internals/export')({ target: 'String', proto: true, forced: WEBKIT_BUG }, { padEnd: function padEnd(maxLength /* , fillString = ' ' */) { return internalStringPad(this, maxLength, arguments.length > 1 ? arguments[1] : undefined, false); } });