Skip to content

Commit

Permalink
specify Math.fround as an implicit dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Oct 26, 2023
1 parent dac0b58 commit 7a35761
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/core-js/full/math/fscale.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'use strict';
require('../../modules/es.math.fround');
require('../../modules/esnext.math.fscale');
var path = require('../../internals/path');

Expand Down
5 changes: 3 additions & 2 deletions packages/core-js/modules/esnext.math.fscale.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
'use strict';
var $ = require('../internals/export');

var getBuiltInStaticMethod = require('../internals/get-built-in-static-method');
var scale = require('../internals/math-scale');
var fround = require('../internals/math-fround');

var fround = getBuiltInStaticMethod('Math', 'fround');

// `Math.fscale` method
// https://rwaldron.github.io/proposal-math-extensions/
Expand Down

0 comments on commit 7a35761

Please sign in to comment.