Mohammad Asif cf937194cb Removed un-waned things 1. | hace 5 meses | |
---|---|---|
.. | ||
test | hace 5 meses | |
.eslintrc | hace 5 meses | |
.nycrc | hace 5 meses | |
CHANGELOG.md | hace 5 meses | |
LICENSE | hace 5 meses | |
README.md | hace 5 meses | |
index.js | hace 5 meses | |
package.json | hace 5 meses |
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