Skip to content

Commit 5ba6244

Browse files
committed
[New] add types
1 parent ebdc486 commit 5ba6244

File tree

6 files changed

+32
-1
lines changed

6 files changed

+32
-1
lines changed

index.d.ts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
declare namespace isAsyncFunction {
2+
type AsyncFunction = (...args: any[]) => Promise<any>
3+
}
4+
5+
declare function isAsyncFunction(fn: unknown): fn is isAsyncFunction.AsyncFunction;
6+
7+
export = isAsyncFunction;

index.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ var getAsyncFunc = function () { // eslint-disable-line consistent-return
1919
} catch (e) {
2020
}
2121
};
22+
23+
/** @type {import('.').AsyncFunction | false} */
2224
var AsyncFunction;
2325

26+
/** @type {import('.')} */
2427
module.exports = function isAsyncFunction(fn) {
2528
if (typeof fn !== 'function') {
2629
return false;
@@ -37,7 +40,8 @@ module.exports = function isAsyncFunction(fn) {
3740
}
3841
if (typeof AsyncFunction === 'undefined') {
3942
var asyncFunc = getAsyncFunc();
40-
AsyncFunction = asyncFunc ? getProto(asyncFunc) : false;
43+
// eslint-disable-next-line no-extra-parens
44+
AsyncFunction = asyncFunc ? /** @type {import('.').AsyncFunction} */ (getProto(asyncFunc)) : false;
4145
}
4246
return getProto(fn) === AsyncFunction;
4347
};

package.json

+8
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"test:uglified": "node test/uglified",
1616
"posttest": "npx npm@\">= 10.2\" audit --production",
1717
"lint": "eslint --ext=js,mjs .",
18+
"postlint": "tsc && attw -P",
1819
"version": "auto-changelog && git add CHANGELOG.md",
1920
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
2021
},
@@ -46,7 +47,13 @@
4647
"safe-regex-test": "^1.1.0"
4748
},
4849
"devDependencies": {
50+
"@arethetypeswrong/cli": "^0.17.2",
4951
"@ljharb/eslint-config": "^21.1.1",
52+
"@ljharb/tsconfig": "^0.2.3",
53+
"@types/for-each": "^0.3.3",
54+
"@types/make-async-function": "^1.0.2",
55+
"@types/make-generator-function": "^2.0.3",
56+
"@types/tape": "^5.8.0",
5057
"auto-changelog": "^2.5.0",
5158
"encoding": "^0.1.13",
5259
"eslint": "=8.8.0",
@@ -58,6 +65,7 @@
5865
"nyc": "^10.3.2",
5966
"safe-publish-latest": "^2.0.0",
6067
"tape": "^5.9.0",
68+
"typescript": "next",
6169
"uglify-register": "^1.0.1"
6270
},
6371
"testling": {

test/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ test('returns false for generator functions', function (t) {
6969

7070
test('returns false for non-async function with faked @@toStringTag', { skip: !hasToStringTag || asyncFuncs.length === 0 }, function (t) {
7171
var asyncFunc = asyncFuncs[0];
72+
/** @type {{ toString(): unknown; valueOf(): unknown; [Symbol.toStringTag]?: unknown }} */
7273
var fakeAsyncFunction = {
7374
toString: function () { return String(asyncFunc); },
7475
valueOf: function () { return asyncFunc; }

test/uglified.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
'use strict';
22

3+
// @ts-expect-error
34
require('uglify-register/api').register({
45
exclude: [/\/node_modules\//, /\/test\//],
56
uglify: { mangle: true }

tsconfig.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": "@ljharb/tsconfig",
3+
"compilerOptions": {
4+
"target": "ES2021",
5+
"maxNodeModuleJsDepth": 0,
6+
},
7+
"exclude": [
8+
"coverage",
9+
],
10+
}

0 commit comments

Comments
 (0)