Skip to content

Is this a native `async function`?

License

Notifications You must be signed in to change notification settings

inspect-js/is-async-function

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
Jan 2, 2025
Jan 2, 2025
Apr 12, 2022
Nov 1, 2022
Apr 12, 2022
Apr 12, 2022
Jan 23, 2025
Apr 12, 2022
Apr 12, 2022
Jan 23, 2025
Jan 23, 2025
Jan 23, 2025
Jan 2, 2025

Repository files navigation

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