mirror of
https://github.com/uetchy/namae.git
synced 2025-08-20 01:48:12 +09:00
style: prettier
This commit is contained in:
@@ -13,7 +13,7 @@ export type HttpMethod =
|
||||
|
||||
export function fetch(
|
||||
url: string,
|
||||
method: HttpMethod = 'HEAD',
|
||||
method: HttpMethod = 'HEAD'
|
||||
): Promise<Response> {
|
||||
return nodeFetch(url, { method: method });
|
||||
}
|
||||
|
@@ -1,6 +1,6 @@
|
||||
export async function mockProvider(
|
||||
provider: any,
|
||||
query: unknown,
|
||||
query: unknown
|
||||
): Promise<string> {
|
||||
const req = {
|
||||
query,
|
||||
|
Reference in New Issue
Block a user