mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
refactor: rename Tool.alpha to Tool.experimental
This commit is contained in:
@@ -20,9 +20,9 @@ export async function getImageInfo(buffer: Buffer): Promise<ImageInfo> {
|
||||
isProgressive: metadata.isProgressive,
|
||||
hasProfile: metadata.hasProfile,
|
||||
orientation: metadata.orientation,
|
||||
exif: metadata.exif ? true : false,
|
||||
icc: metadata.icc ? true : false,
|
||||
xmp: metadata.xmp ? true : false,
|
||||
exif: !!metadata.exif,
|
||||
icc: !!metadata.icc,
|
||||
xmp: !!metadata.xmp,
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user