()
| 3 | |
| 4 | /** Detect CommonJS. */ |
| 5 | export function isCjs(): boolean { |
| 6 | /*! rollup-include-cjs-only */ |
| 7 | return true; |
| 8 | /*! rollup-include-cjs-only-end */ |
| 9 | |
| 10 | /*! rollup-include-esm-only */ |
| 11 | return false; |
| 12 | /*! rollup-include-esm-only-end */ |
| 13 | } |
| 14 | |
| 15 | let hasWarnedAboutNodeVersion: boolean | undefined; |
| 16 |
no outgoing calls
no test coverage detected