export default function hasOwnProperty(obj: object, prop: string): boolean { return Object.prototype.hasOwnProperty.call(obj, prop); }