Skip to content

Commit

Permalink
fix: apply npm run format
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ekai committed Sep 26, 2023
1 parent 7beb79a commit 7ab5336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export async function checkFileExistsOnWeb(url: string): Promise<boolean> {

export async function checkFileExists(path: string): Promise<boolean> {
if (isValidUrl(path)) {
return await checkFileExistsOnWeb(path)
return checkFileExistsOnWeb(path)
} else {

if (typeof process === 'undefined' && typeof window !== 'undefined') {
Expand Down

0 comments on commit 7ab5336

Please sign in to comment.