(namespace: GenericConfigObject)
| 94 | } |
| 95 | |
| 96 | function getDefaultFromCjs(namespace: GenericConfigObject): unknown { |
| 97 | return namespace.default || namespace; |
| 98 | } |
| 99 | |
| 100 | function getConfigImportAttributesKey(input: unknown): ImportAttributesKey | undefined { |
| 101 | if (input === 'assert' || input === 'with') return input; |
no outgoing calls
no test coverage detected
searching dependent graphs…