phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.
39 lines (32 loc) • 1.03 kB
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var HasValue = require('./HasValue');
/**
* Returns a new object that only contains the `keys` that were found on the object provided.
* If no `keys` are found, an empty object is returned.
*
* @function Phaser.Utils.Objects.Pick
* @since 3.18.0
*
* @param {object} object - The object to pick the provided keys from.
* @param {array} keys - An array of properties to retrieve from the provided object.
*
* @return {object} A new object that only contains the `keys` that were found on the provided object. If no `keys` were found, an empty object will be returned.
*/
var Pick = function (object, keys)
{
var obj = {};
for (var i = 0; i < keys.length; i++)
{
var key = keys[i];
if (HasValue(object, key))
{
obj[key] = object[key];
}
}
return obj;
};
module.exports = Pick;