This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Emulate FormData for some browsers | |
* MIT License | |
* (c) 2010 François de Metz | |
*/ | |
/* jslint devel: true, unparam: true, quotmark: double, indent: 2 */ | |
(function(w) { | |
"use strict"; | |
if (w.FormData) { | |
return; |