summaryrefslogtreecommitdiff
path: root/runtime/examples/extension_with_esm/bootstrap.js
blob: 7cbff9cb3b3d450dc954e02320c1a4ff475407d7 (plain)
1
2
3
4
5
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
function hello() {
  console.log("Hello from extension!");
}
globalThis.Extension = { hello };