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

((window) => {
  const { sendSync } = window.__bootstrap.dispatchJson;

  function openPlugin(filename) {
    return sendSync("op_open_plugin", { filename });
  }

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