(value)
| 128 | /*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */ |
| 129 | const escape = (str) => str.replace(/\n/g, '%0A').replace(/\r/g, '%0D').replace(/"/g, '%22'); |
| 130 | const normalizeLinefeeds = (value) => value.replace(/\r?\n|\r/g, '\r\n'); |
| 131 | |
| 132 | const blobParts = []; |
| 133 | const rn = new Uint8Array([13, 10]); |
nothing calls this directly
no outgoing calls
no test coverage detected