is-async-function
TypeScript icon, indicating that this package has built-in type declarations

2.1.1 • Public • Published

is-async-function Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Is this a native async function?

Example

var isAsyncFunction = require('is-async-function');
assert(!isAsyncFunction(function () {}));
assert(!isAsyncFunction(null));
assert(!isAsyncFunction(function* () { yield 42; return Infinity; }));
assert(isAsyncFunction(async function () {}));

Tests

Simply clone the repo, npm install, and run npm test

Package Sidebar

Install

npm i is-async-function

Weekly Downloads

21,464,952

Version

2.1.1

License

MIT

Unpacked Size

23.3 kB

Total Files

11

Last publish

Collaborators

  • ljharb
  • tunnckocore