UNPKG

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