Version 1
[yaffs-website] / node_modules / core-js / modules / _has.js
1 var hasOwnProperty = {}.hasOwnProperty;
2 module.exports = function(it, key){
3   return hasOwnProperty.call(it, key);
4 };