mirror of
https://github.com/photonstorm/phaser
synced 2025-02-17 06:28:30 +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: {
|
Utils: {
|
||||||
|
|
||||||
Array: require('./utils/array/'),
|
Array: require('./utils/array/'),
|
||||||
Objects: require('./utils/objects/')
|
Objects: require('./utils/object/')
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -58,4 +58,4 @@ var NumberArrayStep = function (start, end, step)
|
||||||
return result;
|
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.
|
* @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] || {},
|
||||||
|
|
Loading…
Add table
Reference in a new issue