This file contains 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
🗣 Commented on #4 in Itsusinn/tuic | |
🗣 Commented on #4 in Itsusinn/tuic | |
🗣 Commented on #4 in Itsusinn/tuic | |
🗣 Commented on #4 in Itsusinn/tuic | |
🗣 Commented on #4 in Itsusinn/tuic |
This file contains 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
⭐ Total Stars: 1 | |
➕ Total Commits: 400 | |
🔀 Total PRs: 75 | |
🚩 Total Issues: 112 | |
📦 Contributed to: 50 |
This file contains 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
🌞 Morning 8 commits ▋░░░░░░░░░░░░░░░░░░░░ 3.0% | |
🌆 Daytime 67 commits █████▎░░░░░░░░░░░░░░░ 25.5% | |
🌃 Evening 147 commits ███████████▋░░░░░░░░░ 55.9% | |
🌙 Night 41 commits ███▎░░░░░░░░░░░░░░░░░ 15.6% |
This file contains 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
// 万物起源 | |
addEventListener('fetch', event => { | |
event.respondWith(handleRequest(event.request)) | |
}) | |
// 主逻辑 | |
async function handleRequest(request) { | |
const url = new URL(request.url); | |
const path = url.pathname; | |
const otaResponse = await ROMS.get(`OTA_${path}`); |