Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/nodejs/node
/ abs_f32
Function
abs_f32
deps/v8/test/mjsunit/wasm/asm-wasm-stdlib.js:288–288 ·
view source on GitHub ↗
(x)
Source
from the content-addressed store, hash-verified
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
291
function
acos_f64(x) { x = +x;
return
+acos(x); }
Callers
nothing calls this directly
Calls
1
abs
Function · 0.50
Tested by
no test coverage detected