phaser4-rex-plugins
Version:
32 lines (28 loc) • 830 B
JavaScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* Verifies that an object contains all requested keys
*
* @function Phaser.Utils.Objects.HasAll
* @since 3.0.0
*
* @param {object} source - an object on which to check for key existence
* @param {string[]} keys - an array of keys to ensure the source object contains
*
* @return {boolean} true if the source object contains all keys, false otherwise.
*/
var HasAll = function (source, keys)
{
for (var i = 0; i < keys.length; i++)
{
if (!source.hasOwnProperty(keys[i]))
{
return false;
}
}
return true;
};
export default HasAll;