phaser/src/math/IsEven.js
2018-04-24 16:23:42 +10:00

25 lines
652 B
JavaScript

/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* Check if a given value is an even number.
*
* @function Phaser.Math.IsEven
* @since 3.0.0
*
* @param {number} value - The number to perform the check with.
*
* @return {boolean} Whether the number is even or not.
*/
var IsEven = function (value)
{
// Use abstract equality == for "is number" test
// eslint-disable-next-line eqeqeq
return (value == parseFloat(value)) ? !(value % 2) : void 0;
};
module.exports = IsEven;