2019-01-21 14:03:30 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2018-11-04 13:05:02 -05:00
|
|
|
import * as domTypes from "./dom_types";
|
|
|
|
import * as blob from "./blob";
|
|
|
|
|
2018-12-23 11:44:08 -05:00
|
|
|
// TODO Rename this to DomFileImpl
|
|
|
|
export class DenoFile extends blob.DenoBlob implements domTypes.DomFile {
|
2018-11-04 13:05:02 -05:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|