UNPKG

163 BJavaScriptView Raw
1'use strict';
2
3const collectOptions = (cur, res) => {
4 if (!res) {
5 return [cur];
6 }
7 res.push(cur);
8 return res;
9};
10
11module.exports = {
12 collectOptions
13};
\No newline at end of file