UNPKG

@onesy/algorithms

Version:
5 lines (4 loc) 147 B
export interface IFactorialOptions { cache?: boolean; } export default function factorial(value: number, options?: IFactorialOptions): number;