(str)
| 106 | |
| 107 | /*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */ |
| 108 | const formdataEscape = (str) => |
| 109 | str.replace(/\n/g, '%0A').replace(/\r/g, '%0D').replace(/"/g, '%22') |
| 110 | const normalizeLinefeeds = (value) => value.replace(/\r?\n|\r/g, '\r\n') |
| 111 | |
| 112 | // Set action to this step: run the multipart/form-data |
no outgoing calls
no test coverage detected