refactor: rename Tool.alpha to Tool.experimental

This commit is contained in:
Siddharth Kumar Sah
2026-03-26 01:10:51 +08:00
parent ab370a74fe
commit 585d66f0c9
178 changed files with 5637 additions and 4082 deletions
+3 -3
View File
@@ -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,
},
};
}