(message: string)
| 15 | } |
| 16 | |
| 17 | export function createThrowErrorFunction(message: string) { |
| 18 | return () => { |
| 19 | throw new Error(createErrorMessage(message)) |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | export function hasOwnProperty(context: object, prop: string) { |
| 24 | return Object.prototype.hasOwnProperty.call(context, prop) |
nothing calls this directly
no test coverage detected