(id)
| 52 | return null |
| 53 | }, |
| 54 | load(id) { |
| 55 | if (extensions.some(ext => id.endsWith(ext))) { |
| 56 | const content = readFileSync(id, 'utf-8') |
| 57 | return `export default ${JSON.stringify(content)}` |
| 58 | } |
| 59 | return null |
| 60 | }, |
| 61 | } |
| 62 | } |
| 63 |
nothing calls this directly
no test coverage detected