(x, mark)
| 2032 | |
| 2033 | //reject |
| 2034 | function rw_reject(x, mark) { |
| 2035 | let noteK = isNoteK(x) |
| 2036 | let rwptn = x |
| 2037 | .replace(/^#/, '') |
| 2038 | .split(/\s+/)[0] |
| 2039 | .replace(/^"(.+)"$/, '$1') |
| 2040 | let rwtype = x.match(/reject(-\w+)?$/i)[0].toLowerCase() |
| 2041 | |
| 2042 | rwBox.push({ mark, noteK, rwptn, rwvalue: '-', rwtype }) |
| 2043 | } |
| 2044 | |
| 2045 | //重定向 |
| 2046 | function rw_redirect(x, mark) { |
no test coverage detected