(
id: number,
path: Array<string | number>,
count: number,
)
| 711 | } |
| 712 | |
| 713 | function storeAsGlobal( |
| 714 | id: number, |
| 715 | path: Array<string | number>, |
| 716 | count: number, |
| 717 | ): void { |
| 718 | const inspectedElement = inspectElementRaw(id); |
| 719 | if (inspectedElement !== null) { |
| 720 | const value = getInObject(inspectedElement, path); |
| 721 | const key = `$reactTemp${count}`; |
| 722 | |
| 723 | window[key] = value; |
| 724 | |
| 725 | console.log(key); |
| 726 | console.log(value); |
| 727 | } |
| 728 | } |
| 729 | |
| 730 | function getSerializedElementValueByPath( |
| 731 | id: number, |
nothing calls this directly
no test coverage detected