We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac93365 commit 7ac3900Copy full SHA for 7ac3900
packages/core-js/internals/array-buffer-view-core.js
@@ -72,7 +72,7 @@ var aTypedArrayConstructor = function (C) {
72
if (isPrototypeOf.call(TypedArray, C)) return C;
73
throw TypeError('Target is not a typed array constructor');
74
// required for make typed arrays subclassing work in engines without `setPrototypeOf` / `__proto__`
75
- } else return true;
+ } else return C;
76
};
77
78
var exportTypedArrayMethod = function (KEY, property, forced) {
0 commit comments