(obj, key)
| 187 | var hasOwnProperty = Object.prototype.hasOwnProperty; |
| 188 | |
| 189 | function hasOwn(obj, key) { |
| 190 | return hasOwnProperty.call(obj, key) |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * Create a cached version of a pure function. |
no outgoing calls
no test coverage detected