MCPcopy
hub / github.com/webpack/webpack / fibonacci

Function fibonacci

examples/module-worker/fibonacci.js:1–3  ·  view source on GitHub ↗
(n)

Source from the content-addressed store, hash-verified

1export function fibonacci(n) {
2 return n < 1 ? 0 : n <= 2 ? 1 : fibonacci(n - 1) + fibonacci(n - 2);
3}

Callers 2

fib-worker.jsFile · 0.70
example.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected