Outlook_Addin_LLM/node_modules/@fluentui/react-utilities/lib/utils/createSetFromIterable.js

6 lines
236 B
JavaScript
Raw Normal View History

/**
* 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);
}