(gen: CodeGen, data: Name, property: Name | string)
| 39 | } |
| 40 | |
| 41 | export function isOwnProperty(gen: CodeGen, data: Name, property: Name | string): Code { |
| 42 | return _`${hasPropFunc(gen)}.call(${data}, ${property})` |
| 43 | } |
| 44 | |
| 45 | export function propertyInData( |
| 46 | gen: CodeGen, |
no test coverage detected
searching dependent graphs…