(path)
| 46461 | // Try to unlink, but ignore errors. |
| 46462 | // Any problems will surface later. |
| 46463 | function rm (path) { |
| 46464 | return fs.unlink(path).catch(() => {}) |
| 46465 | } |
| 46466 | |
| 46467 | function cmdShim (src, to, opts) { |
| 46468 | opts = Object.assign({}, DEFAULT_OPTIONS, opts) |
no test coverage detected