Sha256: 1c077408c68f69f7f825c1f087c9a257f86429251dd6e51fda883f1a20b2341b

Contents?: true

Size: 316 Bytes

Versions: 25

Compression:

Stored size: 316 Bytes

Contents

var $ = require('../internals/export');
var sign = require('../internals/math-sign');

var abs = Math.abs;
var pow = Math.pow;

// `Math.cbrt` method
// https://tc39.github.io/ecma262/#sec-math.cbrt
$({ target: 'Math', stat: true }, {
  cbrt: function cbrt(x) {
    return sign(x = +x) * pow(abs(x), 1 / 3);
  }
});

Version data entries

25 entries across 25 versions & 7 rubygems

Version Path
ezii-os-1.0.0 node_modules/core-js/modules/es.math.cbrt.js
condenser-0.0.7 lib/condenser/processors/node_modules/core-js-pure/modules/es.math.cbrt.js
ezii-os-0.0.0.1.0 node_modules/core-js/modules/es.math.cbrt.js
ezii-os-0.0.0.0.1 node_modules/core-js/modules/es.math.cbrt.js
condenser-0.0.5 lib/condenser/processors/node_modules/core-js-pure/modules/es.math.cbrt.js