* Checks if object has the specified key * @param obj The object to check. * @param key The key to find.
(obj: object, key: number | string)
| 143 | * @param key The key to find. |
| 144 | */ |
| 145 | keyInObject(obj: object, key: number | string): boolean { |
| 146 | return Object.prototype.hasOwnProperty.call(obj, key) |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Transposes an array of array |
no outgoing calls
no test coverage detected