(flag, id, flags)
| 63 | } |
| 64 | |
| 65 | async function play(flag, id, flags) { |
| 66 | try { |
| 67 | return await playContent(flag, id, flags); |
| 68 | } catch (e) { |
| 69 | await log('play:' + e.message + ' line:' + e.lineNumber); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | async function search(wd, quick, pg) { |
| 74 | if (pg <= 0) pg = 1; |
nothing calls this directly
no test coverage detected