Files
starface-outlook-sync-addin/node_modules/@swc/helpers/esm/_iterable_to_array.js
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

7 lines
217 B
JavaScript

function _iterable_to_array(iter) {
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
return Array.from(iter);
}
}
export { _iterable_to_array as _ };