aboutsummaryrefslogtreecommitdiff
path: root/src/getScheduleHtml.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/getScheduleHtml.ts')
-rw-r--r--src/getScheduleHtml.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/getScheduleHtml.ts b/src/getScheduleHtml.ts
index abeadfe..327150b 100644
--- a/src/getScheduleHtml.ts
+++ b/src/getScheduleHtml.ts
@@ -6,12 +6,12 @@ const OPTIONS = {
path: '/',
method: 'GET',
headers: {
- Cookie: 'timezone=Asia/Tokyo'
- }
+ Cookie: 'timezone=Asia/Tokyo',
+ },
}
function getScheduleHtml(): Promise<string> {
- const chunks: Uint8Array[] = [];
+ const chunks: Uint8Array[] = []
return new Promise((resolve, reject) => {
const req = https.request(OPTIONS, res => {