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