Skip to content

Commit 8589cae

Browse files
committed
chore: remove accidental raw response type addition
1 parent 9a49992 commit 8589cae

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/fetch.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -258,17 +258,10 @@ export function createFetch(globalOptions: CreateFetchOptions = {}): $Fetch {
258258
const data = await context.response.text();
259259
const parseFunction = context.options.parseResponse || destr;
260260
context.response._data = parseFunction(data);
261-
262261
break;
263262
}
264263
case "stream": {
265264
context.response._data = context.response.body;
266-
267-
break;
268-
}
269-
case "raw": {
270-
context.response._data = context.response.body;
271-
272265
break;
273266
}
274267
default: {

0 commit comments

Comments
 (0)