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.Memory

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

The WebAssembly.Memory object is a resizable ArrayBuffer or SharedArrayBuffer that holds the raw bytes of memory accessed by a WebAssembly Instance.

A memory created by JavaScript or in WebAssembly code will be accessible and mutable from both JavaScript and WebAssembly.

MDN

Constructors

new
Memory(descriptor: MemoryDescriptor)

Creates a new Memory object.

Properties

readonly
buffer: ArrayBuffer

An accessor property that returns the buffer contained in the memory.

Methods

grow(delta: number): number

Increases the size of the memory instance by a specified number of WebAssembly pages (each one is 64KB in size).