prc b6c02717e6 Upload complete no-internet building environment. | před 1 rokem | |
---|---|---|
.. | ||
test | před 1 rokem | |
.eslintrc | před 1 rokem | |
.nycrc | před 1 rokem | |
CHANGELOG.md | před 1 rokem | |
LICENSE | před 1 rokem | |
README.md | před 1 rokem | |
index.js | před 1 rokem | |
package.json | před 1 rokem |
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