I'm a major consumer of APIs that are asynchronous (like `discord.js`) and wanted to make a Five discord bot. You should implement `five.promise` like so: ```ts five.promise = () = new Promise(resolve => { setTimeout(() => resolve(5), 0); }); ```
I'm a major consumer of APIs that are asynchronous (like
discord.js) and wanted to make a Five discord bot. You should implementfive.promiselike so: