Skip to content

Commit 7ac3900

Browse files
committedJul 29, 2021
fix a typo
1 parent ac93365 commit 7ac3900

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/core-js/internals/array-buffer-view-core.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ var aTypedArrayConstructor = function (C) {
7272
if (isPrototypeOf.call(TypedArray, C)) return C;
7373
throw TypeError('Target is not a typed array constructor');
7474
// required for make typed arrays subclassing work in engines without `setPrototypeOf` / `__proto__`
75-
} else return true;
75+
} else return C;
7676
};
7777

7878
var exportTypedArrayMethod = function (KEY, property, forced) {

0 commit comments

Comments
 (0)
Please sign in to comment.