From ca4dcb36dd5be0b14a2fafa059ea02ee7e0a0262 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 23 Jul 2020 10:27:26 -0400 Subject: Rename cli/js2 to cli/rt (#6857) --- cli/js2/21_dom_file.js | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 cli/js2/21_dom_file.js (limited to 'cli/js2/21_dom_file.js') diff --git a/cli/js2/21_dom_file.js b/cli/js2/21_dom_file.js deleted file mode 100644 index 9d2f7fb6b..000000000 --- a/cli/js2/21_dom_file.js +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. - -((window) => { - const blob = window.__bootstrap.blob; - - class DomFile extends blob.Blob { - constructor( - fileBits, - fileName, - options, - ) { - 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; - } - } - - window.__bootstrap.domFile = { - DomFile, - }; -})(this); -- cgit v1.2.3