Softball
West rallies past Milford to earn district-final berth
Article found at journal-news.com
@LWFirebirdsSB advances to the District finals against @FairfieldSB on Friday at 5:00 at Lakota East. @FirebirdTweets @westfirebirds pic.twitter.com/tALNtB7BnG
— West Softball (@LWFirebirdsSB) May 15, 2019
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 (_) {} })();