phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.
32 lines (28 loc) • 775 B
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|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;
};
module.exports = HasAll;