|
vor 3 Wochen | |
---|---|---|
.. | ||
test | vor 3 Wochen | |
.eslintrc | vor 3 Wochen | |
.nycrc | vor 3 Wochen | |
CHANGELOG.md | vor 3 Wochen | |
LICENSE | vor 3 Wochen | |
README.md | vor 3 Wochen | |
index.d.ts | vor 3 Wochen | |
index.js | vor 3 Wochen | |
package.json | vor 3 Wochen | |
tsconfig.json | vor 3 Wochen |
Is this a native async function
?
var isAsyncFunction = require('is-async-function');
assert(!isAsyncFunction(function () {}));
assert(!isAsyncFunction(null));
assert(!isAsyncFunction(function* () { yield 42; return Infinity; }));
assert(isAsyncFunction(async function () {}));
Simply clone the repo, npm install
, and run npm test