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

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
2.1.110,109,286latest

Version History

VersionDownloads (Last 7 Days)Published
2.1.110,109,286
2.1.01,596,828
2.0.09,758,666
1.3.0150
1.2.40
1.2.35
1.2.24
1.2.10
1.2.00
1.1.55
1.1.40
1.1.31
1.1.21
1.1.12
1.1.02
1.0.01
0.0.01

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