vending-machine/mobile/node_modules/licia/has.js
2026-04-03 06:07:13 +08:00

7 lines
149 B
JavaScript

var hasOwnProp = Object.prototype.hasOwnProperty;
exports = function(obj, key) {
return hasOwnProp.call(obj, key);
};
module.exports = exports;