build: 1.2.0-beta12

This commit is contained in:
手瓜一十雪
2024-05-02 18:33:52 +08:00
parent 589725f5cc
commit 4217ba99fd
2 changed files with 2 additions and 2 deletions
src
common
core

@@ -1,5 +1,5 @@
const https = require('node:https'); const https = require('node:https');
export async function HttpGetWithCookies(url: string): Promise<Map<string, string>> { export async function HttpGetCookies(url: string): Promise<Map<string, string>> {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
const result: Map<string, string> = new Map<string, string>(); const result: Map<string, string> = new Map<string, string>();
const req = https.get(url, (res: any) => { const req = https.get(url, (res: any) => {