mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 05:03:37 +00:00
Fixed export issues.
This commit is contained in:
parent
0753bf58a5
commit
f2ca83a143
3 changed files with 3 additions and 3 deletions
|
@ -26,7 +26,7 @@ var Phaser = {
|
|||
Utils: {
|
||||
|
||||
Array: require('./utils/array/'),
|
||||
Objects: require('./utils/objects/')
|
||||
Objects: require('./utils/object/')
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -58,4 +58,4 @@ var NumberArrayStep = function (start, end, step)
|
|||
return result;
|
||||
};
|
||||
|
||||
module.exports = numberArrayStep;
|
||||
module.exports = NumberArrayStep;
|
||||
|
|
|
@ -8,7 +8,7 @@ var IsPlainObject = require('./IsPlainObject');
|
|||
* @param {object} target - The target object to copy to.
|
||||
* @return {object} The extended object.
|
||||
*/
|
||||
var extend = function ()
|
||||
var Extend = function ()
|
||||
{
|
||||
var options, name, src, copy, copyIsArray, clone,
|
||||
target = arguments[0] || {},
|
||||
|
|
Loading…
Reference in a new issue