File size: 100 Bytes
f9f1a35
 
 
1
2
3
4
export default function hasOwnProp(a, b) {
    return Object.prototype.hasOwnProperty.call(a, b);
}