👋 I’m Nathan

new AsyncFunction – the async version of new Function

🔗 a link post linking to picostitch.com

TIL

const AsyncFunction = async function () {}.constructor
const fn = new AsyncFunction('await Promise.resolve(1)')

🤯