mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
d43b43ca78
Instead of using core/snapshot_creator.rs, instead two crates are introduced which allow building the snapshot during build.rs. Rollup is removed and replaced with our own bundler. This removes the Node build dependency. Modules in //js now use Deno-style imports with file extensions, rather than Node style extensionless imports. This improves incremental build time when changes are made to //js files by about 40 seconds.
25 lines
865 B
TypeScript
25 lines
865 B
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import * as domTypes from "./dom_types.ts";
|
|
import * as blob from "./blob.ts";
|
|
|
|
// 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();
|
|
}
|
|
}
|