Skip to content

Commit b0c211a

Browse files
authored
Merge pull request #2 from keithbro/master
Change const to let
2 parents 68d45b2 + 684d05c commit b0c211a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/templates/core/node/request.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export async function request(options: ApiRequestOptions): Promise<ApiResult> {
6868
const responseBody = await getResponseBody(response);
6969
const responseHeader = getResponseHeader(response, requestHookResult.options.responseHeader);
7070

71-
const result: ApiResult = {
71+
let result: ApiResult = {
7272
url,
7373
ok: response.ok,
7474
status: response.status,

0 commit comments

Comments
 (0)