UNPKG

charlike

Version:

Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options

16 lines (13 loc) 282 B
'use strict'; var log = Math.log, sqrt = Math.sqrt; module.exports = function (x) { if (isNaN(x)) return NaN; x = Number(x); if (x === 0) return x; if (!isFinite(x)) return x; if (x < 0) { x = -x; return -log(x + sqrt(x * x + 1)); } return log(x + sqrt(x * x + 1)); };