diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-10-19 19:15:27 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-20 01:19:59 -0400 |
commit | 09e011b3890af1525f27b788da63b09d8e874604 (patch) | |
tree | 64c572f3f38df7612f96102ab5c47f5cf1b03798 /js/fetch.ts | |
parent | 826c2f4dac72a05c63bf098ea3ac83790cb30405 (diff) |
Format.
Diffstat (limited to 'js/fetch.ts')
-rw-r--r-- | js/fetch.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/fetch.ts b/js/fetch.ts index eef149e4d..3559f3db8 100644 --- a/js/fetch.ts +++ b/js/fetch.ts @@ -89,7 +89,7 @@ export class DenoHeaders implements domTypes.Headers { keys(): IterableIterator<string> { const iterators = this.headerMap.keys(); - return new CreateIterableIterator(iterators); + return new CreateIterableIterator(iterators); } set(name: string, value: string): void { @@ -99,7 +99,7 @@ export class DenoHeaders implements domTypes.Headers { values(): IterableIterator<string> { const iterators = this.headerMap.values(); - return new CreateIterableIterator(iterators); + return new CreateIterableIterator(iterators); } forEach( |