1
2
3
4
export let underscoreExample = (async () => {
const { default: _ } = await import("npm:underscore");
return _.max([1, 2, 3]);
})();