Skip to content

Commit

Permalink
fix dependencies of { actual, full, features }/typed-array/at entries
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed May 25, 2022
1 parent 4bdfbb1 commit 03994d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
## Changelog
##### Unreleased
- Nothing
- Fixed dependencies of `{ actual, full, features }/typed-array/at` entries

##### [3.22.7 - 2022.05.24](https://github.com/zloirock/core-js/releases/tag/v3.22.7)
- Added a workaround for V8 ~ Chrome 53 bug with non-writable prototype of some methods, [#1083](https://github.com/zloirock/core-js/issues/1083)
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js/actual/typed-array/at.js
@@ -1,3 +1,3 @@
var parent = require('../../stable/typed-array/every');
var parent = require('../../stable/typed-array/at');

module.exports = parent;
2 changes: 1 addition & 1 deletion packages/core-js/full/typed-array/at.js
@@ -1,4 +1,4 @@
var parent = require('../../actual/typed-array/every');
var parent = require('../../actual/typed-array/at');

// TODO: Remove from `core-js@4`
require('../../modules/esnext.typed-array.at');
Expand Down

0 comments on commit 03994d1

Please sign in to comment.