(x)
| 2407 | |
| 2408 | //名字简介解析 |
| 2409 | function getModInfo(x) { |
| 2410 | const regex = /^#!\s*([^\s]+?)\s*=\s*(.+)/ |
| 2411 | let key = x.match(regex)[1] == 'keyword' ? 'category' : x.match(regex)[1] |
| 2412 | let value = x.match(regex)[2] |
| 2413 | modInfoObj[key] = value |
| 2414 | //console.log(key) |
| 2415 | } |
| 2416 | |
| 2417 | //获取可莉图标集 |
| 2418 | async function getIcon(icon) { |
no outgoing calls
no test coverage detected