0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 01:44:26 -05:00
deno/op_crates/webidl/lib.rs
2021-04-28 18:16:45 -04:00

14 lines
339 B
Rust

// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use deno_core::include_js_files;
use deno_core::Extension;
/// Load and execute the javascript code.
pub fn init() -> Extension {
Extension::builder()
.js(include_js_files!(
prefix "deno:op_crates/webidl",
"00_webidl.js",
))
.build()
}