(params)
| 206 | }, |
| 207 | |
| 208 | async copyPath(params) { |
| 209 | const record = asRecord(params) |
| 210 | const from = stringValue(record, "from") |
| 211 | const to = stringValue(record, "to") |
| 212 | await fs.cp(from, to, { recursive: boolValue(record.recursive), force: boolValue(record.force, true) }) |
| 213 | return { ok: true, from, to } |
| 214 | }, |
| 215 | |
| 216 | async fuzzySearch(params) { |
| 217 | const record = asRecord(params) |
nothing calls this directly
no test coverage detected