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

13 lines (10 loc) 226 B
'use strict'; var pow = Math.pow; 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) return -pow(-x, 1 / 3); return pow(x, 1 / 3); };