This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Script Info NEXT DATA iOS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const puppeteer = require("puppeteer"); | |
async function getAustinPowerOutages(endpoint) { | |
try { | |
const res = await fetch(endpoint); | |
if (!res.ok) { | |
throw new Error(`Austin Energy ${endpoint} is not available.`); | |
} | |
const data = await res.json(); | |
return data; |
OlderNewer