is-async-function
is-async-function copied to clipboard
Is this a native `async function`?
Results
1
is-async-function issues
Sort by
recently updated
recently updated
newest added
`isAsyncFunction` will return `true` for both `(class { async () {} }).prototype.async` and `{ async () {} }.async`. The cause is that keywords are allowed to be used as function/getter/setter...