(obj: any)
| 62 | } |
| 63 | |
| 64 | function getHideProps(obj: any): string[] { |
| 65 | let result: string[] = []; |
| 66 | for (let prop in obj) { |
| 67 | if (endsWith(prop, HIDE_STATE_SUFFIX)) { |
| 68 | result.push(prop); |
| 69 | } |
| 70 | } |
| 71 | return result; |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * The data type of a state variable. Used for determining the |
no test coverage detected
searching dependent graphs…