UNPKG

180 BJavaScriptView Raw
1/*
2object:hasOwn
3*/"use strict"
4
5var hasOwnProperty = Object.hasOwnProperty
6
7var hasOwn = function(self, key){
8 return hasOwnProperty.call(self, key)
9}
10
11module.exports = hasOwn