* Check whether the object has the property. * * @param {Object} obj * @param {String} key * @return {Boolean}
(obj, key)
| 77 | */ |
| 78 | |
| 79 | function hasOwn(obj, key) { |
| 80 | return hasOwnProperty.call(obj, key); |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Check if an expression is a literal value. |
no outgoing calls
no test coverage detected