(arr)
| 2538 | } |
| 2539 | |
| 2540 | function pieceHn(arr) { |
| 2541 | arr = arr.map(item => getHnValue(item)) |
| 2542 | if (!isStashiOS && arr.length > 0) return arr.join(', ') |
| 2543 | else if (isStashiOS && arr.length > 0) return arr.join(`"\n - "`) |
| 2544 | else return [] |
| 2545 | } |
| 2546 | |
| 2547 | //查binary |
| 2548 | async function isBinaryMode(url, name) { |
no test coverage detected