(id)
| 53 | } |
| 54 | |
| 55 | async function detail(id) { |
| 56 | try { |
| 57 | let matches = id.match(patternAli); |
| 58 | if (!_.isEmpty(matches)) return await detailContent(matches[0]); |
| 59 | return ''; |
| 60 | } catch (e) { |
| 61 | await log('detail:' + e.message + ' line:' + e.lineNumber); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | async function play(flag, id, flags) { |
| 66 | try { |
nothing calls this directly
no test coverage detected