Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/xdg/vendor/types/deno.d.ts>WebAssembly.Global

Determine XDG Base Directory paths (OS/platform portable)
Latest
class WebAssembly.Global
import { WebAssembly } from "https://deno.land/x/xdg@v10.6.0/vendor/types/deno.d.ts";
const { Global } = WebAssembly;

A WebAssembly.Global object represents a global variable instance, accessible from both JavaScript and importable/exportable across one or more WebAssembly.Module instances. This allows dynamic linking of multiple modules.

MDN

Constructors

new
Global(descriptor: GlobalDescriptor, v?: any)

Creates a new Global object.

Properties

value: any

The value contained inside the global variable — this can be used to directly set and get the global's value.

Methods

valueOf(): any

Old-style method that returns the value contained inside the global variable.