diff --git a/gulpfile.js b/gulpfile.js index 0c4138db8..9ebc252f1 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -77,7 +77,7 @@ const config = JSON.parse(fs.readFileSync(CONFIG_FILE).toString()); const ENV_TARGETS = [ "last 2 versions", - "Chrome >= 88", + "Chrome >= 92", "Firefox ESR", "Safari >= 15.4", "Node >= 18", diff --git a/src/shared/compatibility.js b/src/shared/compatibility.js index 641cc431e..346024f77 100644 --- a/src/shared/compatibility.js +++ b/src/shared/compatibility.js @@ -36,22 +36,6 @@ import { isNodeJS } from "./is_node.js"; polyfillPath2D(globalThis); })(); -// Support: Chrome<92 -(function checkArrayAt() { - if (Array.prototype.at) { - return; - } - require("core-js/es/array/at.js"); -})(); - -// Support: Chrome<92 -(function checkTypedArrayAt() { - if (Uint8Array.prototype.at) { - return; - } - require("core-js/es/typed-array/at.js"); -})(); - // Support: Chrome<98 (function checkStructuredClone() { if (globalThis.structuredClone) {