Re: [w3c/FileAPI] Support `Response` in `URL.createObjectURL` (#97)

exports.js

`export default {abc:123}`

JavaScript

```
 <script type="module">
    import data from "./exports.js"; 
    setTimeout(() => console.log(data), 1000);
  </script>
  <script type="module">
    import data from "./exports.js"; 
    data.abc = 456;
  </script>
```

provides the same results as using  a `data URL`.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/FileAPI/issues/97#issuecomment-366772303

Received on Monday, 19 February 2018 18:30:30 UTC