Skip to content

Commit 7fd11d3

Browse files
authored
Merge pull request #201 from none23/fix-const-array-filter
fix: filter error with `as const` unions
2 parents 8b00ac3 + 53cee4f commit 7fd11d3

File tree

7 files changed

+41
-10
lines changed

7 files changed

+41
-10
lines changed

.changeset/metal-moose-march.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@total-typescript/ts-reset": patch
3+
---
4+
5+
@author: none23
6+
7+
Fixed a bug where running .filter on a union of arrays would not work.

.github/workflows/main.yml

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: pnpm/action-setup@v4
16-
with:
17-
version: 9
1816
- uses: actions/setup-node@v3
1917
with:
2018
node-version: 20.x

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
"prettier": "^3.2.5",
109109
"tsx": "^3.14.0",
110110
"turbo": "^1.13.3",
111-
"typescript": "^5.4.5"
111+
"typescript": "^5.5.4"
112112
},
113113
"prettier": {
114114
"arrowParens": "always",

pnpm-lock.yaml

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/entrypoints/filter-boolean.d.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
/// <reference path="utils.d.ts" />
22

33
interface Array<T> {
4-
filter(predicate: BooleanConstructor, thisArg?: any): TSReset.NonFalsy<T>[];
4+
filter<S extends T>(
5+
predicate: BooleanConstructor,
6+
thisArg?: any,
7+
): TSReset.NonFalsy<S>[];
58
}
69

710
interface ReadonlyArray<T> {
8-
filter(predicate: BooleanConstructor, thisArg?: any): TSReset.NonFalsy<T>[];
11+
filter<S extends T>(
12+
predicate: BooleanConstructor,
13+
thisArg?: any,
14+
): TSReset.NonFalsy<S>[];
915
}

src/tests/array-index-of.ts

+12
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ doNotExecute(async () => {
6565
);
6666
});
6767

68+
doNotExecute(() => {
69+
const arr: string[] | number[] = {} as any;
70+
71+
const result = arr.indexOf("abc");
72+
});
73+
6874
// lastIndexOf
6975

7076
doNotExecute(async () => {
@@ -131,3 +137,9 @@ doNotExecute(async () => {
131137
true,
132138
);
133139
});
140+
141+
doNotExecute(() => {
142+
const arr: string[] | number[] = {} as any;
143+
144+
const result = arr.lastIndexOf("abc");
145+
});

src/tests/filter-boolean.ts

+8
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,11 @@ doNotExecute(() => {
3838

3939
type tests = [Expect<Equal<typeof result, never[]>>];
4040
});
41+
42+
doNotExecute(() => {
43+
const arr: string[] | number[] = {} as any;
44+
45+
const result = arr.filter((x) => typeof x === "string");
46+
47+
type tests = [Expect<Equal<typeof result, string[]>>];
48+
});

0 commit comments

Comments
 (0)