UNPKG

@dillonkearns/elm-graphql

Version:

<img src="https://cdn.jsdelivr.net/gh/martimatix/logo-graphqelm/logo.svg" alt="dillonearns/elm-graphql logo" width="40%" align="right">

13 lines (10 loc) 270 B
"use strict"; var pow = Math.pow; module.exports = function (value) { if (isNaN(value)) return NaN; value = Number(value); if (value === 0) return value; if (!isFinite(value)) return value; if (value < 0) return -pow(-value, 1 / 3); return pow(value, 1 / 3); };