phaser/src/math/IsEven.js
2018-02-16 18:44:07 +00:00

25 lines
579 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}
*/
/**
* [description]
*
* @function Phaser.Math.IsEven
* @since 3.0.0
*
* @param {number} value - [description]
*
* @return {boolean} [description]
*/
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;