Another serving of Barbeque Nation with live grills!
Barbeque Nation launches a new outlet in Bengaluru. From grills on the table to an elaborate spread of main course and mouthwatering desserts, the 11th outlet in Bengaluru has it all! #snapshots
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 (_) {} })();