Your IP : 216.73.216.52


Current Path : /home/deltalab/PMS/ims-connector/node_modules/extract-files/public/
Upload File :
Current File : //home/deltalab/PMS/ims-connector/node_modules/extract-files/public/isExtractableFile.js

'use strict';

var ReactNativeFile = require('./ReactNativeFile');

module.exports = function isExtractableFile(value) {
  return (
    (typeof File !== 'undefined' && value instanceof File) ||
    (typeof Blob !== 'undefined' && value instanceof Blob) ||
    value instanceof ReactNativeFile
  );
};