lix-website/themes/lix/assets/bootstrap/node_modules/has-own-prop/index.js
2024-04-26 22:49:34 -06:00

5 lines
141 B
JavaScript

'use strict';
const hasOwnProp = Object.prototype.hasOwnProperty;
module.exports = (object, property) => hasOwnProp.call(object, property);