450 B
450 B
title, tags
| title | tags |
|---|---|
| isAsyncFunction | type,function,intermediate |
Checks if the given argument is an async function.
- Use
Object.prototype.toString()andFunction.prototype.call()and check if the result is'[object AsyncFunction]'.
const isAsyncFunction = val =>
Object.prototype.toString.call(val) === '[object AsyncFunction]';
isAsyncFunction(function() {}); // false
isAsyncFunction(async function() {}); // true