Outlook_Addin_LLM/node_modules/has-own-prop/index.js

5 lines
141 B
JavaScript
Raw Normal View History

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