(o: object, prop: string)
| 2 | * https://www.ecma-international.org/ecma-262/11.0/index.html#sec-hasownproperty |
| 3 | */ |
| 4 | export function HasOwnProperty(o: object, prop: string): boolean { |
| 5 | return Object.prototype.hasOwnProperty.call(o, prop) |
| 6 | } |
no outgoing calls
no test coverage detected