The situation following the disastrous flooding of last year has seen conditions vastly improve and homes restored. However, groundwater flooding still largely remains in the South of England. A move has been made to protect properties from water damage and damp.
Courtesy of gov.uk
To find out more, feel free to contact us.
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();