Current section

Files

Jump to
common_graphql_client priv npm node_modules extract-files lib isExtractableFile.js
Raw

priv/npm/node_modules/extract-files/lib/isExtractableFile.js

'use strict';
var ReactNativeFile = require('./ReactNativeFile.js');
module.exports = function isExtractableFile(value) {
return (
(typeof File !== 'undefined' && value instanceof File) ||
(typeof Blob !== 'undefined' && value instanceof Blob) ||
value instanceof ReactNativeFile
);
};