Sha256: 9a6fa4d972fada5a030108fc0a8eab60a92bf0535af51be0600ffac3a0250c4a
Contents?: true
Size: 395 Bytes
Versions: 46
Compression:
Stored size: 395 Bytes
Contents
// Thanks: https://github.com/monolithed/ECMAScript-6 "use strict"; var exp = Math.exp; module.exports = function (value) { if (isNaN(value)) return NaN; value = Number(value); if (value === 0) return value; if (value === Infinity) return Infinity; if (value === -Infinity) return -1; if (value > -1.0e-6 && value < 1.0e-6) return value + value * value / 2; return exp(value) - 1; };
Version data entries
46 entries across 46 versions & 3 rubygems