"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = hasOwnProperty;
/**
* Check if an object has the given property in a type-safe way.
*/functionhasOwnProperty(obj, prop) {
returnObject.prototype.hasOwnProperty.call(obj, prop);
}