wallet-core/node_modules/core-js/modules/$.has.js
2017-05-03 15:35:00 +02:00

4 lines
117 B
JavaScript

var hasOwnProperty = {}.hasOwnProperty;
module.exports = function(it, key){
return hasOwnProperty.call(it, key);
};