()
| 3 | import type { ZipBuffer } from './index'; |
| 4 | |
| 5 | export const isNodeProcess = (): boolean => { |
| 6 | return ( |
| 7 | typeof process === 'object' && |
| 8 | typeof process.versions === 'object' && |
| 9 | typeof process.versions.node !== 'undefined' |
| 10 | ); |
| 11 | }; |
| 12 | |
| 13 | export const writeZipToDisk = ( |
| 14 | zipFolderPath: string, |
no outgoing calls
no test coverage detected
searching dependent graphs…