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

Function exp_f64

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

Source from the content-addressed store, hash-verified

295 function sin_f64(x) { x = +x; return +sin(x); }
296 function tan_f64(x) { x = +x; return +tan(x); }
297 function exp_f64(x) { x = +x; return +exp(x); }
298 function log_f64(x) { x = +x; return +log(x); }
299
300 function atan2_f64(x, y) { x = +x; y = +y; return +atan2(x, y); }

Callers

nothing calls this directly

Calls 1

expFunction · 0.85

Tested by

no test coverage detected