Skip to content

Commit 854f734

Browse files
committed
assert,util: fix Float16Array TODO
1 parent 479bd63 commit 854f734

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

lib/internal/util/comparisons.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,8 @@ const wellKnownConstructors = new SafeSet()
8888
.add(Uint8Array)
8989
.add(Uint8ClampedArray)
9090
.add(WeakMap)
91-
.add(WeakSet);
92-
93-
if (Float16Array) { // TODO(BridgeAR): Remove when regularly supported
94-
wellKnownConstructors.add(Float16Array);
95-
}
91+
.add(WeakSet)
92+
.add(Float16Array);
9693

9794
const types = require('internal/util/types');
9895
const {

0 commit comments

Comments
 (0)