summaryrefslogtreecommitdiff
path: root/runtime/js/40_plugins.js
blob: 51a37c9dcf5a915afa2382f733379a234975e1c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.

((window) => {
  const core = window.Deno.core;

  function openPlugin(filename) {
    return core.jsonOpSync("op_open_plugin", { filename });
  }

  window.__bootstrap.plugins = {
    openPlugin,
  };
})(this);