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

9 lines
228 B
JavaScript

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