1
2
3
4
export const npmDefaultExample = (async () => {
const { default: _ } = await import("npm:lodash");
return _.partition([1, 2, 3, 4], (n) => n % 2);
})();