phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.
37 lines (32 loc) • 733 B
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Shallow Object Clone. Will not clone nested objects.
*
* @function Phaser.Utils.Objects.Clone
* @since 3.0.0
*
* @param {object} obj - The object to clone.
*
* @return {object} A new object with the same properties as the input object.
*/
var Clone = function (obj)
{
var clone = {};
for (var key in obj)
{
if (Array.isArray(obj[key]))
{
clone[key] = obj[key].slice(0);
}
else
{
clone[key] = obj[key];
}
}
return clone;
};
module.exports = Clone;