aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es6.math.log2.js
blob: c4ba7819c85b6ca8f4ff6034dc71c941a3f773c0 (plain)
1
2
3
4
5
6
7
8
// 20.2.2.22 Math.log2(x)
var $export = require('./_export');

$export($export.S, 'Math', {
  log2: function log2(x){
    return Math.log(x) / Math.LN2;
  }
});