2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2015-08-13 18:14:34 +02:00
|
|
|
// See https://github.com/nodejs/node/issues/1376
|
2015-04-11 05:04:16 +02:00
|
|
|
// and https://code.google.com/p/v8/issues/detail?id=4019
|
|
|
|
|
|
|
|
Math.abs(-0.5);
|
|
|
|
Math.acos(-0.5);
|
|
|
|
Math.acosh(-0.5);
|
|
|
|
Math.asin(-0.5);
|
|
|
|
Math.asinh(-0.5);
|
|
|
|
Math.atan(-0.5);
|
|
|
|
Math.atanh(-0.5);
|
|
|
|
Math.cbrt(-0.5);
|
|
|
|
Math.ceil(-0.5);
|
|
|
|
Math.cos(-0.5);
|
|
|
|
Math.cosh(-0.5);
|
|
|
|
Math.exp(-0.5);
|
|
|
|
Math.expm1(-0.5);
|
|
|
|
Math.floor(-0.5);
|
|
|
|
Math.fround(-0.5);
|
|
|
|
Math.log(-0.5);
|
|
|
|
Math.log10(-0.5);
|
|
|
|
Math.log1p(-0.5);
|
|
|
|
Math.log2(-0.5);
|
|
|
|
Math.round(-0.5);
|
|
|
|
Math.sign(-0.5);
|
|
|
|
Math.sin(-0.5);
|
|
|
|
Math.sinh(-0.5);
|
|
|
|
Math.sqrt(-0.5);
|
|
|
|
Math.tan(-0.5);
|
|
|
|
Math.tanh(-0.5);
|
|
|
|
Math.trunc(-0.5);
|