crapifyme
Version:
Ultra-fast developer productivity CLI tools - remove comments, logs, and more
20 lines • 492 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SUPPORTED_IMAGE_EXTENSIONS = void 0;
exports.isSupportedImageExtension = isSupportedImageExtension;
exports.SUPPORTED_IMAGE_EXTENSIONS = [
'png',
'jpg',
'jpeg',
'svg',
'gif',
'webp',
'bmp',
'ico',
'tiff',
'avif'
];
function isSupportedImageExtension(ext) {
return exports.SUPPORTED_IMAGE_EXTENSIONS.includes(ext.toLowerCase());
}
//# sourceMappingURL=types.js.map