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-12 12:57:55 +00:00
|
|
|
/**
|
|
|
|
* A NOOP (No Operation) callback function.
|
|
|
|
*
|
|
|
|
* Used internally by Phaser when it's more expensive to determine if a callback exists
|
|
|
|
* than it is to just invoke an empty function.
|
|
|
|
*
|
|
|
|
* @function Phaser.Utils.NOOP
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2016-11-28 16:55:13 +00:00
|
|
|
var NOOP = function ()
|
|
|
|
{
|
2017-10-12 12:57:55 +00:00
|
|
|
// NOOP
|
2016-11-28 16:55:13 +00:00
|
|
|
};
|
|
|
|
|
2016-11-29 10:46:24 +00:00
|
|
|
module.exports = NOOP;
|