(object, property)
| 2 | // helper function to safely check whether an object as a property |
| 3 | // copy from the function in object.js which is ES6 |
| 4 | export function hasOwnProperty (object, property) { |
| 5 | return object && Object.hasOwnProperty.call(object, property) |
| 6 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…