Files
Lab4/28/node_modules/has/src/index.js
MishaBagger b6c10cc93f MACHIN
2023-10-25 09:15:21 +03:00

9 lines
212 B
JavaScript

'use strict';
var hasOwnProperty = {}.hasOwnProperty;
var call = Function.prototype.call;
module.exports = call.bind ? call.bind(hasOwnProperty) : function (O, P) {
return call.call(hasOwnProperty, O, P);
};