wallet-core/node_modules/core-js/modules/$.has.js

4 lines
117 B
JavaScript
Raw Normal View History

2017-05-03 15:35:00 +02:00
var hasOwnProperty = {}.hasOwnProperty;
module.exports = function(it, key){
return hasOwnProperty.call(it, key);
};