Implement missing Math.cbrt function from ES6 (#3680)

C implementation ported from fdlibm

Part of Issue #3568

JerryScript-DCO-1.0-Signed-off-by: Rafal Walczyna r.walczyna@samsung.com
This commit is contained in:
Rafal Walczyna
2020-04-20 15:40:03 +02:00
committed by GitHub
parent 1b01171a60
commit 453da11398
7 changed files with 186 additions and 4 deletions
+1
View File
@@ -67,6 +67,7 @@ double log10 (double);
/* Power functions. */
double pow (double, double);
double sqrt (double);
double cbrt (double);
/* Rounding and remainder functions. */
double ceil (double);