Mohammad Asif cf937194cb Removed un-waned things 1. | пре 6 месеци | |
---|---|---|
.. | ||
test | пре 6 месеци | |
.eslintrc | пре 6 месеци | |
.nycrc | пре 6 месеци | |
CHANGELOG.md | пре 6 месеци | |
LICENSE | пре 6 месеци | |
README.md | пре 6 месеци | |
index.js | пре 6 месеци | |
package.json | пре 6 месеци |
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