UNPKG

96 BJavaScriptView Raw
1"use strict";
2
3module.exports = Math.log2 || function(x) {
4 return Math.log(x) / Math.LN2;
5};
6