- From: guest271314 <notifications@github.com>
- Date: Mon, 19 Feb 2018 18:30:06 +0000 (UTC)
- To: w3c/FileAPI <FileAPI@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Monday, 19 February 2018 18:30:30 UTC
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