UNPKG

react-bootstrap-typeahead

Version:
10 lines 288 B
/** * Truncates the result set based on `maxResults` and returns the new set. */ function getTruncatedOptions(options, maxResults) { if (!maxResults || maxResults >= options.length) { return options; } return options.slice(0, maxResults); } export default getTruncatedOptions;