Files
2025-03-07 19:22:02 +01:00

6 lines
236 B
JavaScript

/**
* Creates a set from a given iterable, in case the iterable is a set itself, returns the given set instead.
*/ export function createSetFromIterable(iterable) {
return iterable instanceof Set ? iterable : new Set(iterable);
}