UNPKG

@phaserjs/phaser

Version:
8 lines (7 loc) 200 B
export function GetConfigValue(config, property, defaultValue) { if (Object.prototype.hasOwnProperty.call(config, property)) { return config[property]; } else { return defaultValue; } }