diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2019-01-03 06:41:20 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-03 06:41:20 -0500 |
commit | 8d452d74fa6f63eb0bce0567083d375b50329de4 (patch) | |
tree | 0f60fa86fd52a69e30b54d5bad5a7942cf9ae221 /js/blob.ts | |
parent | 5b9c4889215a5c8e5a3681af0b3586ff4e0a15fe (diff) |
Support more fetch init body types (#1449)
Diffstat (limited to 'js/blob.ts')
-rw-r--r-- | js/blob.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/blob.ts b/js/blob.ts index 96aae496e..7510c9cef 100644 --- a/js/blob.ts +++ b/js/blob.ts @@ -3,7 +3,7 @@ import * as domTypes from "./dom_types"; import { containsOnlyASCII } from "./util"; import { TextEncoder } from "./text_encoding"; -const bytesSymbol = Symbol("bytes"); +export const bytesSymbol = Symbol("bytes"); export class DenoBlob implements domTypes.Blob { private readonly [bytesSymbol]: Uint8Array; |