UNPKG

phaser4-rex-plugins

Version:
20 lines (16 loc) 364 B
var HasProperty = function (obj, prop) { if (!obj) { return false; } if (obj.hasOwnProperty(prop)) { return true; } while (obj) { if (Object.getOwnPropertyDescriptor(obj, prop)) { return true; } obj = obj.__proto__; } return false; } export default HasProperty;