(obj)
| 203 | }; |
| 204 | |
| 205 | var isXHR2Compatible = function (obj) { |
| 206 | if (typeof Blob !== 'undefined' && obj instanceof Blob) return true; |
| 207 | if (typeof ArrayBuffer !== 'undefined' && obj instanceof ArrayBuffer) return true; |
| 208 | if (typeof FormData !== 'undefined' && obj instanceof FormData) return true; |
| 209 | }; |