UNPKG

184 BJavaScriptView Raw
1/**
2 * Check if an object has the given property in a type-safe way.
3 */
4export default function hasOwnProperty(obj, prop) {
5 return Object.prototype.hasOwnProperty.call(obj, prop);
6}
\No newline at end of file