Files
30-seconds-of-code/snippets/is-async-function.md
2023-04-28 22:29:23 +03:00

541 B

title, type, tags, author, cover, dateModified
title type tags author cover dateModified
Value is async function snippet
type
function
chalarangelo interior-12 2020-10-20T11:21:07+03:00

Checks if the given argument is an async function.

  • Use Object.prototype.toString() and Function.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