1
2
3
4
5
6
7
8
export let npmExample = (async () => {
// const { getSSLHubRpcClient } = await import("npm:@farcaster/hub-nodejs");
// console.log("hi: ", getSSLHubRpcClient);
// return "foo";
const _ = await import("npm:lodash-es"); // The Lodash library exported as ES modules.
console.log("_ dis ", _.shuffle);
console.log(_.shuffle(_.zip([1, 2, 34, 4], [5, 6, 7, 8])));
})();
1
Next