2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2023-01-02 17:36:27 +00:00
|
|
|
* @copyright 2013-2023 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2018-02-12 16:01:20 +00:00
|
|
|
*/
|
|
|
|
|
2017-10-06 03:52:41 +00:00
|
|
|
/**
|
2018-05-23 09:46:16 +00:00
|
|
|
* Check if a given value is an even number using a strict type check.
|
2017-10-06 03:52:41 +00:00
|
|
|
*
|
|
|
|
* @function Phaser.Math.IsEvenStrict
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-05-23 09:46:16 +00:00
|
|
|
* @param {number} value - The number to perform the check with.
|
2017-10-06 03:52:41 +00:00
|
|
|
*
|
2018-05-23 09:46:16 +00:00
|
|
|
* @return {boolean} Whether the number is even or not.
|
2017-10-06 03:52:41 +00:00
|
|
|
*/
|
2017-06-27 22:23:09 +00:00
|
|
|
var IsEvenStrict = function (value)
|
|
|
|
{
|
|
|
|
// Use strict equality === for "is number" test
|
|
|
|
return (value === parseFloat(value)) ? !(value % 2) : void 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = IsEvenStrict;
|