()
| 14 | const hashPresent = location.hash !== ''; |
| 15 | |
| 16 | function queryStringTitle() { |
| 17 | if (queryPresent) return 'The query string field-value pairs are:'; |
| 18 | return 'No query string in the url'; |
| 19 | } |
| 20 | |
| 21 | function hashFragmentTitle() { |
| 22 | if (hashPresent) return 'The hash fragment is:'; |
no outgoing calls
no test coverage detected