I use this method to make the query string keys and their values all lower case:
const urlParams = new URLSearchParams(window.location.search.toLowerCase());
const Timeout = urlParams.get('timeout');
This works perfectly well as long as you don't mind the query values also being converted to lower case.