(view: any)
| 1779 | } |
| 1780 | |
| 1781 | function isVisible(view: any): boolean { |
| 1782 | const hidden = Boolean(read(view, "hidden") ?? read(view, "isHidden")); |
| 1783 | const alpha = numberValue(read(view, "alpha"), 1); |
| 1784 | return !hidden && alpha > 0; |
| 1785 | } |
| 1786 | |
| 1787 | function nsArray(value: any): any[] { |
| 1788 | if (!value) { |
no test coverage detected