Code
Hub
Workspaces
Connect your AI tool
Indexed graphs
Engine
MCP
copy
hub
/
github.com/webpack/webpack
/ factorialJavascript
Function
factorialJavascript
examples/wasm-simple/math.js:7–10 · examples/wasm-simple/math.js::factorialJavascript
(i)
Source
from the content-addressed store, hash-verified
5
export
{ add, factorial, fibonacci };
6
7
export
function
factorialJavascript(i) {
8
if
(i < 1)
return
1;
9
return
i * factorialJavascript(i - 1);
10
}
11
12
export
function
fibonacciJavascript(i) {
13
if
(i < 2)
return
1;
Callers
1
example.js
File · 0.90
Calls
no outgoing calls
Tested by
no test coverage detected