mirror of
https://github.com/denoland/deno.git
synced 2025-08-01 17:42:32 +00:00
refactor: Rename runtime/rt to runtime/js (#8806)
This commit is contained in:
parent
55dc467b41
commit
ffb5f7a4e1
42 changed files with 5 additions and 12 deletions
13
runtime/js/40_plugins.js
Normal file
13
runtime/js/40_plugins.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
// Copyright 2018-2020 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);
|
Loading…
Add table
Add a link
Reference in a new issue