UNPKG

@onesy/algorithms

Version:
5 lines (4 loc) 174 B
export interface IFactorialRecursiveOptions { cache?: boolean; } export default function factorialRecursive(value: number, options?: IFactorialRecursiveOptions): number;