jimmywarting / FormData

HTML5 `FormData` polyfill for Browsers and nodejs
MIT License
360 stars 102 forks source link

Not IE Safe #115

Closed rcampbel closed 4 years ago

rcampbel commented 4 years ago

The Method Definitions used in the code are not IE safe.

Example: https://github.com/jimmywarting/FormData/blob/18479550bebb79ae76c39cf23c2694619463170f/FormData.js#L57-L59

rcampbel commented 4 years ago

Also the use of const and let are not supported until ie11

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let

chhatch commented 4 years ago

Use formdata.min.js instead. const and let are not used there.

jimmywarting commented 4 years ago

☝️ what he said