(s)
| 40200 | const o = s.indexOf('#') |
| 40201 | return -1 !== o ? s.substring(o) : '#' |
| 40202 | }, |
| 40203 | stripHash = (s) => { |
| 40204 | const o = s.indexOf('#') |
| 40205 | let i = s |
| 40206 | return (o >= 0 && (i = s.substring(0, o)), i) |
| 40207 | }, |
| 40208 | url_cwd = () => { |
| 40209 | if (Yo.browser) return stripHash(globalThis.location.href) |
no outgoing calls
no test coverage detected