From 5dcfe47c2a76628b762f208a37ae6ec6c8052ff8 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Tue, 27 Aug 2024 18:38:35 +0200 Subject: [PATCH] Fix formatting --- packages/vips/src/utils.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/vips/src/utils.ts b/packages/vips/src/utils.ts index ea1988fe..e8c9a62b 100644 --- a/packages/vips/src/utils.ts +++ b/packages/vips/src/utils.ts @@ -45,7 +45,9 @@ export function supportsQuality( * @param type Mime type. * @return Whether the file supports animation. */ -export function supportsAnimation( type: string ): type is 'image/webp' | 'image/gif' { +export function supportsAnimation( + type: string +): type is 'image/webp' | 'image/gif' { return [ 'image/webp', 'image/gif' ].includes( type ); }