Skip to content

Instantly share code, notes, and snippets.

@guest271314
Last active March 9, 2024 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guest271314/63716e6c5f222e962dd368763821331c to your computer and use it in GitHub Desktop.
Save guest271314/63716e6c5f222e962dd368763821331c to your computer and use it in GitHub Desktop.
Ecmascript Modules on file: protocol

test.html

<!doctype html>
<html>
<head></head>
<body>
<script type="module">
import * as data from "./exports.js";
console.log(data, location.protocol);
</script>
</body>
</html>

exports.js

const data = 1;
export { data }

Chromium 124

chromium_124

Firefox 125

firefox_125

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment