UNPKG

290 BJavaScriptView Raw
1/**
2 * Truncates the result set based on `maxResults` and returns the new set.
3 */
4function getTruncatedOptions(options, maxResults) {
5 if (!maxResults || maxResults >= options.length) {
6 return options;
7 }
8
9 return options.slice(0, maxResults);
10}
11
12export default getTruncatedOptions;
\No newline at end of file