Skip to content

Commit

Permalink
fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Jul 29, 2021
1 parent ac93365 commit 7ac3900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core-js/internals/array-buffer-view-core.js
Expand Up @@ -72,7 +72,7 @@ var aTypedArrayConstructor = function (C) {
if (isPrototypeOf.call(TypedArray, C)) return C;
throw TypeError('Target is not a typed array constructor');
// required for make typed arrays subclassing work in engines without `setPrototypeOf` / `__proto__`
} else return true;
} else return C;
};

var exportTypedArrayMethod = function (KEY, property, forced) {
Expand Down

0 comments on commit 7ac3900

Please sign in to comment.