* Finds a script by `id`. * @param id The script id to find. * @returns The script.
(id: number)
| 94 | * @returns The script. |
| 95 | */ |
| 96 | static get(id: number): ScriptFile | undefined { |
| 97 | return this.scripts[id]; |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Finds a script by `name`. |
no outgoing calls
no test coverage detected