source:
node_modules/d3-fetch/src/text.js@
e4c61dd
| Last change on this file since e4c61dd was e4c61dd, checked in by , 6 months ago | |
|---|---|
|
|
| File size: 234 bytes | |
| Line | |
|---|---|
| 1 | function responseText(response) { |
| 2 | if (!response.ok) throw new Error(response.status + " " + response.statusText); |
| 3 | return response.text(); |
| 4 | } |
| 5 | |
| 6 | export default function(input, init) { |
| 7 | return fetch(input, init).then(responseText); |
| 8 | } |
Note:
See TracBrowser
for help on using the repository browser.
