UNPKG

la-cosa-nostra

Version:

A Mafia bot designed to run in Discord - beware the traitors and the lies!

14 lines (7 loc) 146 B
module.exports = function factorial (value) { if (value <= 1) { return 1; } else { return factorial(value - 1) * value; }; };