async function.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() {}); // trueSubscribe to get resources directly to your inbox. You won't receive any spam! ✌️