(str, title)
| 4160 | } |
| 4161 | |
| 4162 | function debug(str, title) { |
| 4163 | if (enableDebug) { |
| 4164 | console.log( |
| 4165 | `%c【Pagetual v.${_GM_info.script.version}】 ${title ? title : 'debug'}:`, |
| 4166 | 'color: yellow;font-size: large;font-weight: bold;background-color: darkblue;border-radius: 10px;text-shadow: 1px 1px 3px black;padding: 5px;', |
| 4167 | str |
| 4168 | ); |
| 4169 | } |
| 4170 | } |
| 4171 | |
| 4172 | function requestWithFetch(f, onFetchError) { |
| 4173 | function getHeaderValue(headers, name) { |
no outgoing calls
no test coverage detected