Fixed export issues.

This commit is contained in:
photonstorm 2016-12-20 16:34:47 +00:00
parent 0753bf58a5
commit f2ca83a143
3 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,7 @@ var Phaser = {
Utils: { Utils: {
Array: require('./utils/array/'), Array: require('./utils/array/'),
Objects: require('./utils/objects/') Objects: require('./utils/object/')
} }

View file

@ -58,4 +58,4 @@ var NumberArrayStep = function (start, end, step)
return result; return result;
}; };
module.exports = numberArrayStep; module.exports = NumberArrayStep;

View file

@ -8,7 +8,7 @@ var IsPlainObject = require('./IsPlainObject');
* @param {object} target - The target object to copy to. * @param {object} target - The target object to copy to.
* @return {object} The extended object. * @return {object} The extended object.
*/ */
var extend = function () var Extend = function ()
{ {
var options, name, src, copy, copyIsArray, clone, var options, name, src, copy, copyIsArray, clone,
target = arguments[0] || {}, target = arguments[0] || {},