(node)
| 107 | transform() { |
| 108 | return { |
| 109 | script(node) { |
| 110 | if (node.name === 'jotai') { |
| 111 | if (node.url?.size) { |
| 112 | const normal = Array.from( node.url.values())[0] |
| 113 | node.url = new Set() |
| 114 | node.extra.spare.forEach((el: string) => node.url?.add(new URL(`${node.extra.name}@${node.extra.version}/${el}`, unpkg).href)) |
| 115 | node.url.add(normal) |
| 116 | } |
| 117 | } |
| 118 | } |
| 119 | } |
| 120 | } |
| 121 | }), |
nothing calls this directly
no outgoing calls
no test coverage detected