source: trip-planner-front/node_modules/core-js/modules/es.math.log2.js@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 242 bytes
Line 
1var $ = require('../internals/export');
2
3var log = Math.log;
4var LN2 = Math.LN2;
5
6// `Math.log2` method
7// https://tc39.es/ecma262/#sec-math.log2
8$({ target: 'Math', stat: true }, {
9 log2: function log2(x) {
10 return log(x) / LN2;
11 }
12});
Note: See TracBrowser for help on using the repository browser.