| 2 | |
| 3 | // Plugin API |
| 4 | interface Options { |
| 5 | extensions?: string | string[]; |
| 6 | } |
| 7 | |
| 8 | const plugin: rollup.PluginImpl<Options> = (options = {}) => { |
| 9 | const _extensions = options.extensions || ['.js']; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…