Skip to content

Instantly share code, notes, and snippets.

@ShirtlessKirk
ShirtlessKirk / FormData.js
Last active February 12, 2024 00:02
FormData partial polyfill for IE < 10 (<input type="file"> not supported)
/*
* @preserve FormData polyfill for IE < 10. See https://developer.mozilla.org/en/docs/Web/API/FormData and http://caniuse.com/#search=formdata
*
* @author ShirtlessKirk copyright 2015
* @license WTFPL (http://www.wtfpl.net/txt/copying)
*/
/*global define: false, module: false */
/*jslint bitwise: true, continue: true, nomen: true */
(function formDataModule(global, definition) { // non-exporting module magic dance
'use strict';