mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
25 lines
658 B
JavaScript
25 lines
658 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var IMAGE_EXT = ['jpeg', 'jpg', 'gif', 'png', 'svg'];
|
|
function isImageUrl(url) {
|
|
return IMAGE_EXT.some(function (ext) { return url.indexOf("." + ext) !== -1; });
|
|
}
|
|
exports.isImageUrl = isImageUrl;
|
|
function isImageFile(item) {
|
|
if (item.type) {
|
|
return item.type.indexOf('image') === 0;
|
|
}
|
|
if (item.path) {
|
|
return isImageUrl(item.path);
|
|
}
|
|
if (item.url) {
|
|
return isImageUrl(item.url);
|
|
}
|
|
return false;
|
|
}
|
|
exports.isImageFile = isImageFile;
|
|
function isVideo(res, accept) {
|
|
return accept === 'video';
|
|
}
|
|
exports.isVideo = isVideo;
|