function isImage(filename) {
// 获取文件的扩展名
const extension = filename.split(‘.’).pop().toLowerCase();
// 常见的图片文件扩展名
const imageExtensions = [‘jpg’, ‘jpeg’, ‘png’, ‘gif’, ‘bmp’, ‘webp’, ‘svg’];
// 检查文件扩展名是否在常见图片扩展名列表中
return imageExtensions.includes(extension);
}
// 使用示例
console.log(isImage(‘example.jpg’)); // 输出: true
console.log(isImage(‘document.pdf’)); // 输出: false