hexo/node_modules/ali-oss/lib/common/utils/isFile.js

7 lines
194 B
JavaScript
Raw Normal View History

2023-09-25 15:58:56 +08:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isFile = void 0;
exports.isFile = obj => {
return typeof File !== 'undefined' && obj instanceof File;
};