(uuid: string)
| 357 | return editorsRef.current.find((e) => e.script.uuid === uuid)?.script; |
| 358 | }, []); |
| 359 | const editorFindIndex = (uuid: string) => { |
| 360 | return editorsRef.current.findIndex((e) => e.script.uuid === uuid); |
| 361 | }; |
| 362 | const editorFindItem = (uuid: string) => { |
| 363 | return editorsRef.current.find((e) => e.script.uuid === uuid); |
| 364 | }; |
no outgoing calls
no test coverage detected