diff options
Diffstat (limited to 'js/dom_file.ts')
-rw-r--r-- | js/dom_file.ts | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/js/dom_file.ts b/js/dom_file.ts deleted file mode 100644 index 1f9bf93a5..000000000 --- a/js/dom_file.ts +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -import * as domTypes from "./dom_types.ts"; -import * as blob from "./blob.ts"; - -export class DomFileImpl 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(); - } -} |