UNPKG

arcade-physics

Version:
18 lines 564 B
export default IsEvenStrict; /** * @author Richard Davey <rich@photonstorm.com> * @copyright 2020 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * Check if a given value is an even number using a strict type check. * * @function Phaser.Math.IsEvenStrict * @since 3.0.0 * * @param {number} value - The number to perform the check with. * * @return {boolean} Whether the number is even or not. */ declare function IsEvenStrict(value: number): boolean; //# sourceMappingURL=IsEvenStrict.d.ts.map