summaryrefslogtreecommitdiff
path: root/cli/js/web/dom_file.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-07-19 19:49:44 +0200
committerGitHub <noreply@github.com>2020-07-19 19:49:44 +0200
commitfa61956f03491101b6ef64423ea2f1f73af26a73 (patch)
treec3800702071ca78aa4dd71bdd0a59a9bbe460bdd /cli/js/web/dom_file.ts
parent53adde866dd399aa2509d14508642fce37afb8f5 (diff)
Port internal TS code to JS (#6793)
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
Diffstat (limited to 'cli/js/web/dom_file.ts')
-rw-r--r--cli/js/web/dom_file.ts24
1 files changed, 0 insertions, 24 deletions
diff --git a/cli/js/web/dom_file.ts b/cli/js/web/dom_file.ts
deleted file mode 100644
index 907337e59..000000000
--- a/cli/js/web/dom_file.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-
-import * as blob from "./blob.ts";
-
-export class DomFileImpl extends blob.DenoBlob implements File {
- lastModified: number;
- name: string;
-
- constructor(
- fileBits: BlobPart[],
- fileName: string,
- options?: FilePropertyBag,
- ) {
- const { lastModified = Date.now(), ...blobPropertyBag } = options ?? {};
- super(fileBits, blobPropertyBag);
-
- // 4.1.2.1 Replace any "/" character (U+002F SOLIDUS)
- // with a ":" (U + 003A COLON)
- this.name = String(fileName).replace(/\u002F/g, "\u003A");
- // 4.1.3.3 If lastModified is not provided, set lastModified to the current
- // date and time represented in number of milliseconds since the Unix Epoch.
- this.lastModified = lastModified;
- }
-}