UNPKG

diginext-img-magic-cli

Version:
15 lines (13 loc) 332 B
// src/plugins/isImageSupported.ts var isImageSupported = (url) => { if (!url) return false; const arr = [".png", ".jpg", ".jpeg"]; const index = arr.findIndex((item) => { return url.indexOf(item) >= 0; }); return index >= 0; }; var isImageSupported_default = isImageSupported; export { isImageSupported_default };