debian-mirror-gitlab/core-js/internals/has.js

6 lines
121 B
JavaScript
Raw Normal View History

2019-09-25 13:30:05 +05:30
var hasOwnProperty = {}.hasOwnProperty;
module.exports = function (it, key) {
return hasOwnProperty.call(it, key);
};