mirror of
https://github.com/rjNemo/federation
synced 2026-06-09 11:36:39 +00:00
5 lines
121 B
JavaScript
5 lines
121 B
JavaScript
var hasOwnProperty = {}.hasOwnProperty;
|
|
|
|
module.exports = function (it, key) {
|
|
return hasOwnProperty.call(it, key);
|
|
};
|