UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

14 lines (9 loc) 216 B
'use strict'; module.exports = function (str, len, ch) { str = str + ''; len = len - str.length; if (len <= 0) return str; if (!ch && ch !== 0) ch = ' '; ch = ch + ''; return ch.repeat(len) + str; };