deno_webidl 0.93.0

WebIDL implementation for Deno
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.

use deno_core::include_js_files;
use deno_core::Extension;

pub fn init() -> Extension {
  Extension::builder(env!("CARGO_PKG_NAME")).build()
}

pub fn init_esm() -> Extension {
  Extension::builder(env!("CARGO_PKG_NAME"))
    .esm(include_js_files!("00_webidl.js",))
    .build()
}