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

What is "code transformation"?

Have you tried using a `data URL`, which are served with `Content-Type` header, at `<script type="module">`?

E.g., by hand 

```
<script type="module">
  import {Test} from "data:application/javascript,const%20Mod={this.abc=123};export%20{Mod};";
  console.log(Test);
</script>
```

-- 
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-366760638

Received on Monday, 19 February 2018 17:53:00 UTC