* @see https://url.spec.whatwg.org/#include-credentials * @param {URL} url
(url)
| 1438 | * @param {URL} url |
| 1439 | */ |
| 1440 | function includesCredentials (url) { |
| 1441 | // A URL includes credentials if its username or password is not the empty string. |
| 1442 | return !!(url.username || url.password) |
| 1443 | } |
| 1444 | |
| 1445 | /** |
| 1446 | * @see https://html.spec.whatwg.org/multipage/document-sequences.html#traversable-navigable |
no outgoing calls
no test coverage detected