(from: string, to: string | undefined)
| 47 | } |
| 48 | |
| 49 | resolveCjs(from: string, to: string | undefined): string { |
| 50 | if (!to) return from; |
| 51 | return this.resolveCached(from, to, this.cjsCache, this.cjsConditions); |
| 52 | } |
| 53 | |
| 54 | resolveEsm(from: string, to: string | undefined): string { |
| 55 | if (!to) return from; |
no test coverage detected