1
2
3
4
import { fib2 as fib22 } from "https://esm.town/v/stevekrouse/fib2";
export let fib2 = (n) =>
n > 2 ? fib22(n - 1) + fib22(n - 2) : 1;