summaryrefslogtreecommitdiff
path: root/js/file.ts
diff options
context:
space:
mode:
authorYoshihisa Mochihara <motihara@gmail.com>2018-12-27 10:45:58 +0100
committerRyan Dahl <ry@tinyclouds.org>2018-12-27 09:45:58 +0000
commit3d9f46a6cfc14d890d9899fdd4df2cc993478cc0 (patch)
tree969bd29a1e213fd7189ab496a6ecbe3f761e092c /js/file.ts
parent5e518b741704b738e29352c341ee6a956cce1fff (diff)
Rename file.ts to dom_file.ts (#1423)
Diffstat (limited to 'js/file.ts')
-rw-r--r--js/file.ts28
1 files changed, 0 insertions, 28 deletions
diff --git a/js/file.ts b/js/file.ts
deleted file mode 100644
index 6b5a4fbd0..000000000
--- a/js/file.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
-// TODO Rename this file to js/dom_file.ts it's currently too similarly named to
-// js/files.ts
-
-import * as domTypes from "./dom_types";
-import * as blob from "./blob";
-
-// TODO Rename this to DomFileImpl
-export class DenoFile extends blob.DenoBlob implements domTypes.DomFile {
- lastModified: number;
- name: string;
-
- constructor(
- fileBits: domTypes.BlobPart[],
- fileName: string,
- options?: domTypes.FilePropertyBag
- ) {
- options = options || {};
- super(fileBits, options);
-
- // 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 = options.lastModified || Date.now();
- }
-}