(name)
| 12 | } |
| 13 | |
| 14 | export function isFile(name) { |
| 15 | return stat(name) |
| 16 | .then(stats => stats.isFile()) |
| 17 | .catch(() => false); |
| 18 | } |
| 19 | |
| 20 | // eslint-disable-next-line no-console |
| 21 | export const stdout = console.log.bind(console); |
no outgoing calls
no test coverage detected
searching dependent graphs…