summaryrefslogtreecommitdiff
path: root/cli/js/web/dom_file.ts
blob: 792d96dd17346981708697c7b6d4254c763316fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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;
  }
}