Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2a1e055

Browse files
authoredDec 4, 2023
Merge pull request #657 from reduxjs/bugfix/5.0-weakref-check
2 parents 87ac8fb + 484626e commit 2a1e055

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed
 

‎.github/workflows/build-and-test-types.yml

-4
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,6 @@ jobs:
140140
- name: Clone RTK repo
141141
run: git clone https://github.com/reduxjs/redux-toolkit.git ./redux-toolkit
142142

143-
- name: Check out v2.0-integration
144-
working-directory: ./redux-toolkit
145-
run: git checkout v2.0-integration
146-
147143
- name: Check folder contents
148144
run: ls -l .
149145

‎src/weakMapMemoize.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ class StrongRef<T> {
1515
}
1616
}
1717

18-
const Ref = WeakRef ?? StrongRef
18+
const Ref =
19+
typeof WeakRef !== 'undefined'
20+
? WeakRef
21+
: (StrongRef as unknown as typeof WeakRef)
1922

2023
const UNTERMINATED = 0
2124
const TERMINATED = 1

0 commit comments

Comments
 (0)
Please sign in to comment.