From 03994d1eb975d5110200e8e5461b944e7927f2d6 Mon Sep 17 00:00:00 2001 From: Denis Pushkarev Date: Thu, 26 May 2022 00:37:10 +0700 Subject: [PATCH] fix dependencies of `{ actual, full, features }/typed-array/at` entries --- CHANGELOG.md | 2 +- packages/core-js/actual/typed-array/at.js | 2 +- packages/core-js/full/typed-array/at.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22dad164a180..f2414104f5d6 100644 --- a/CHANGELOG.md +++ b/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) diff --git a/packages/core-js/actual/typed-array/at.js b/packages/core-js/actual/typed-array/at.js index 8beccc9d5baf..58e7959a9df6 100644 --- a/packages/core-js/actual/typed-array/at.js +++ b/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; diff --git a/packages/core-js/full/typed-array/at.js b/packages/core-js/full/typed-array/at.js index a549dd1e32dc..827f7333f8b6 100644 --- a/packages/core-js/full/typed-array/at.js +++ b/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');