(flag, id, flags)
| 47 | } |
| 48 | |
| 49 | async function play(flag, id, flags) { |
| 50 | try { |
| 51 | return await playContent(flag, id, flags); |
| 52 | } catch (e) { |
| 53 | await log('play:' + e.message + ' line:' + e.lineNumber); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | async function search(wd, quick, pg) { |
| 58 | if (pg <= 0) pg = 1; |
nothing calls this directly
no test coverage detected