(cwd)
| 1165 | } |
| 1166 | |
| 1167 | function resolveCwd(cwd) { |
| 1168 | if (!cwd) return process.cwd() |
| 1169 | try { |
| 1170 | if (fs.existsSync(cwd) && fs.statSync(cwd).isDirectory()) { |
| 1171 | return cwd |
| 1172 | } |
| 1173 | } catch { |
| 1174 | return process.cwd() |
| 1175 | } |
| 1176 | return process.cwd() |
| 1177 | } |
| 1178 | |
| 1179 | function saveClipboardImage(options = {}) { |
| 1180 | const { cwd, prefix } = options || {} |
no outgoing calls
no test coverage detected