-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js
38 lines (36 loc) · 947 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
'use strict';
var toStr = Object.prototype.toString;
var fnToStr = Function.prototype.toString;
var isFnRegex = /^\s*async(?:\s+function(?:\s+|\()|\s*\()/;
var hasToStringTag = require('has-tostringtag/shams')();
var getProto = Object.getPrototypeOf;
var getAsyncFunc = function () { // eslint-disable-line consistent-return
if (!hasToStringTag) {
return false;
}
try {
return Function('return async function () {}')();
} catch (e) {
}
};
var AsyncFunction;
module.exports = function isAsyncFunction(fn) {
if (typeof fn !== 'function') {
return false;
}
if (isFnRegex.test(fnToStr.call(fn))) {
return true;
}
if (!hasToStringTag) {
var str = toStr.call(fn);
return str === '[object AsyncFunction]';
}
if (!getProto) {
return false;
}
if (typeof AsyncFunction === 'undefined') {
var asyncFunc = getAsyncFunc();
AsyncFunction = asyncFunc ? getProto(asyncFunc) : false;
}
return getProto(fn) === AsyncFunction;
};