( format: ExtractOpts['format'] )
| 130 | } |
| 131 | |
| 132 | function isBuiltinFormatter( |
| 133 | format: ExtractOpts['format'] |
| 134 | ): format is string | undefined { |
| 135 | return ( |
| 136 | !format || (typeof format === 'string' && BUILTIN_FORMATTERS.has(format)) |
| 137 | ) |
| 138 | } |
| 139 | |
| 140 | function canExtractWithNative( |
| 141 | files: readonly string[], |
no outgoing calls
no test coverage detected