UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

13 lines 279 B
/** * * @param {Object} obj * @param {string} p * @return {boolean} */ export function objectHasProperty(obj, p) { if (typeof obj.hasOwnProperty === "function") { return obj.hasOwnProperty(p); } else { return obj[p] !== undefined; } }