2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2019-01-15 16:20:22 +00:00
|
|
|
* @copyright 2019 Photon Storm Ltd.
|
2018-02-12 16:01:20 +00:00
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2017-10-06 02:05:01 +00:00
|
|
|
/**
|
2018-04-22 06:59:44 +00:00
|
|
|
* Calculates the factorial of a given number for integer values greater than 0.
|
2017-10-06 02:05:01 +00:00
|
|
|
*
|
|
|
|
* @function Phaser.Math.Factorial
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-04-22 06:59:44 +00:00
|
|
|
* @param {number} value - A positive integer to calculate the factorial of.
|
2017-10-06 02:05:01 +00:00
|
|
|
*
|
2018-04-22 06:59:44 +00:00
|
|
|
* @return {number} The factorial of the given number.
|
2017-10-06 02:05:01 +00:00
|
|
|
*/
|
2016-12-07 17:16:59 +00:00
|
|
|
var Factorial = function (value)
|
|
|
|
{
|
|
|
|
if (value === 0)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
var res = value;
|
|
|
|
|
|
|
|
while (--value)
|
|
|
|
{
|
|
|
|
res *= value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Factorial;
|