UNPKG

react-bootstrap-typeahead

Version:
12 lines (10 loc) 290 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;