phaser/src/utils/index.js

21 lines
433 B
JavaScript
Raw Normal View History

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
*/
2018-01-31 13:54:44 +00:00
/**
* @namespace Phaser.Utils
*/
module.exports = {
Array: require('./array/'),
Base64: require('./base64/'),
Objects: require('./object/'),
String: require('./string/'),
2022-11-24 00:42:04 +00:00
NOOP: require('./NOOP'),
NULL: require('./NULL')
};