(
source,
_context,
_defaultTransformSource
)
| 269 | |
| 270 | // Emulate node's built-in old defaultTransformSource() so we can re-use the old transformSource() hook |
| 271 | const defaultTransformSource: typeof transformSource = async ( |
| 272 | source, |
| 273 | _context, |
| 274 | _defaultTransformSource |
| 275 | ) => ({ source }); |
| 276 | |
| 277 | // Call the old hook |
| 278 | const { source: transformedSource } = await transformSource( |
no outgoing calls
no test coverage detected
searching dependent graphs…