()
| 820 | const userAgent = () => window.navigator.userAgent |
| 821 | |
| 822 | const getDocumentSearchString = () => // moved to a separate function so it can be mocked for testing |
| 823 | document.location.search |
| 824 | |
| 825 | const getQueryVariables = function () { |
| 826 | const query = module.exports.getDocumentSearchString().substring(1) // use module.exports so spy is used in testing |
nothing calls this directly
no outgoing calls
no test coverage detected