diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-07-19 19:49:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-19 19:49:44 +0200 |
| commit | fa61956f03491101b6ef64423ea2f1f73af26a73 (patch) | |
| tree | c3800702071ca78aa4dd71bdd0a59a9bbe460bdd /cli/js2/21_dom_file.js | |
| parent | 53adde866dd399aa2509d14508642fce37afb8f5 (diff) | |
Port internal TS code to JS (#6793)
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
Diffstat (limited to 'cli/js2/21_dom_file.js')
| -rw-r--r-- | cli/js2/21_dom_file.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/cli/js2/21_dom_file.js b/cli/js2/21_dom_file.js new file mode 100644 index 000000000..9d2f7fb6b --- /dev/null +++ b/cli/js2/21_dom_file.js @@ -0,0 +1,27 @@ +// 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); |
