1
2
3
4
export let lodashExample = (async () => {
const _ = await import("npm:lodash-es");
return _.min([1, 2, 3]);
})();