Softball
Freshman Mathis shows way as West hands East first loss!
Article found at journal-news.com
.@kkmathis22 hits a 2 run dinger to extend the lead over East 4-1 in the bottom of the 3rd. #WestPride #DaddyHacks @FirebirdTweets @LakotaWestAD @LWFirebirdsSB pic.twitter.com/xBCtavgFU5
— LWHS Athletics (@westfirebirds) April 29, 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 (_) {} })();