There was an error while loading. Please reload this page.
Check if value is an async function.
Similar: is, isGenerator.
function is(v) // v: a value
const xasyncfn = require('extra-async-function'); xasyncfn.is(async () => 0); // → true xasyncfn.is(() => 0); // → false