Files
powerpoint-toolbox/node_modules/has-own-prop/index.js
T
2025-03-07 19:22:02 +01:00

5 lines
141 B
JavaScript

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