summaryrefslogtreecommitdiff
path: root/js/file.ts
blob: 8496d6edbd23ffeee58e4b2255c6f7167e5e6029 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
import * as domTypes from "./dom_types";
import * as blob from "./blob";

export class DenoFile extends blob.DenoBlob implements domTypes.File {
  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();
  }
}