(name)
| 448 | }; |
| 449 | |
| 450 | function toLowerCase(name) { |
| 451 | return name.replace(/[A-Z]/g, function (c) { |
| 452 | return String.fromCharCode(c.charCodeAt(0) + 0x20); |
| 453 | }); |
| 454 | } |
| 455 | |
| 456 | function HeadersPolyfill(all) { |
| 457 | // Get headers: implemented according to mozilla's example code: https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/getAllResponseHeaders#Example |
no outgoing calls
no test coverage detected