UNPKG

polyfill-service

Version:
6 lines (4 loc) 98 B
Math.cbrt = function cbrt(x) { var y = Math.pow(Math.abs(x), 1 / 3); return x < 0 ? -y : y; };