2021-02-24 20:04:03 +01:00

9 lines
257 B
JavaScript

import toArray from "@babel/runtime/helpers/esm/toArray";
console.log("================= import - esm ======================");
console.log("typeof toArray:", typeof toArray);
const arr = toArray(new Set([1, 2, 3]));
console.log("arr:", arr.toString());