(url: string)
| 86 | * @param url the URL of the WebAssembly module. |
| 87 | */ |
| 88 | export function getImage(url: string): number { |
| 89 | return IMAGES.findIndex(image => { |
| 90 | return image.type === 'wasm' && image.code_file === url; |
| 91 | }); |
| 92 | } |
no outgoing calls
no test coverage detected