diff --git a/src/util.js b/src/util.js index 8421344c..0954c4bc 100644 --- a/src/util.js +++ b/src/util.js @@ -60,10 +60,6 @@ export default { * @returns {Array} an array of binary data to be passed */ getTransferables: function(obj) { - // Internet Explorer does not support Transferable objects. - if (isIE11) { - return undefined; - } const transferables = []; util.collectTransferables(obj, transferables); return transferables.length ? transferables : undefined;