UNPKG

@jsonjoy.com/util

Version:
9 lines (8 loc) 278 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.hasOwnProperty = hasOwnProperty; const has = Object.prototype.hasOwnProperty; // biome-ignore lint: shadow name is intended function hasOwnProperty(obj, key) { return has.call(obj, key); }