(titles: (HTMLElement | undefined)[])
| 1063 | CommonProject.scripts.render.methods.pin(CommonProject.scripts.workResults); |
| 1064 | |
| 1065 | const titleTransform = (titles: (HTMLElement | undefined)[]) => { |
| 1066 | const res = titles.map((t) => (t ? t.innerText : '')).join('\n\n'); |
| 1067 | return config.questionTitleTransform ? config.questionTitleTransform(res) : res; |
| 1068 | }; |
| 1069 | |
| 1070 | /** 新建答题器 */ |
| 1071 | const worker = new OCSWorker({ |
no outgoing calls
no test coverage detected