Sha256: 5a5366a821ebd140de69a713f684ac79d3a9b06e01b57ee03a51b9f1170d005f
Contents?: true
Size: 277 Bytes
Versions: 29
Compression:
Stored size: 277 Bytes
Contents
'use strict'; var log = Math.log, LOG2E = Math.LOG2E; module.exports = function (x) { if (isNaN(x)) return NaN; x = Number(x); if (x < 0) return NaN; if (x === 0) return -Infinity; if (x === 1) return 0; if (x === Infinity) return Infinity; return log(x) * LOG2E; };
Version data entries
29 entries across 19 versions & 7 rubygems