(id: string)
| 133 | }; |
| 134 | |
| 135 | const getWorkerEntryPath = (id: string) => { |
| 136 | if (WORKER_SUFFIX.some((p) => id.endsWith(p))) { |
| 137 | return normalizeFsPath(id); |
| 138 | } |
| 139 | return null; |
| 140 | }; |
| 141 | |
| 142 | interface WorkerMeta { |
| 143 | code: string; |
no test coverage detected