From 6b967f8c4d270bf49da581dfac3f10728caf48b6 Mon Sep 17 00:00:00 2001 From: Denis Pushkarev Date: Mon, 24 Jul 2023 01:12:31 +0700 Subject: [PATCH] forced installation of `Math.f16round` --- packages/core-js/modules/esnext.math.f16round.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core-js/modules/esnext.math.f16round.js b/packages/core-js/modules/esnext.math.f16round.js index 5ad662e5524d..e872be3574bf 100644 --- a/packages/core-js/modules/esnext.math.f16round.js +++ b/packages/core-js/modules/esnext.math.f16round.js @@ -8,7 +8,7 @@ var $isFinite = isFinite; // `Math.f16round` method // https://github.com/tc39/proposal-float16array -$({ target: 'Math', stat: true }, { +$({ target: 'Math', stat: true, forced: true }, { f16round: function f16round(x) { var n = +x; return $isFinite(n) && n !== 0 ? unpackIEEE754(packIEEE754(n, 10, 2), 10) : n;