UNPKG

287 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports["default"] = hasOwnProperty;
7
8/**
9 * Check if an object has the given property in a type-safe way.
10 */
11function hasOwnProperty(obj, prop) {
12 return Object.prototype.hasOwnProperty.call(obj, prop);
13}
\No newline at end of file