UNPKG

175 BJavaScriptView Raw
1export function toSet(source) {
2 const set = new Set();
3 for (const item of source) {
4 set.add(item);
5 }
6 return set;
7}
8
9//# sourceMappingURL=toset.mjs.map