MCPcopy Create free account
hub / github.com/nodejs/node / abs_f64

Function abs_f64

deps/v8/test/mjsunit/wasm/asm-wasm-stdlib.js:287–287  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

285 function sqrt_f32(x) { x = fround(x); return fround(sqrt(x)); }
286
287 function abs_f64(x) { x = +x; return +abs(x); }
288 function abs_f32(x) { x = fround(x); return fround(abs(x)); }
289 function abs_i32(x) { x = x | 0; return abs(x|0) | 0; }
290

Callers

nothing calls this directly

Calls 1

absFunction · 0.50

Tested by

no test coverage detected