Skip to main content
DefaultSerializer - v8 - Node documentation
class DefaultSerializer
extends Serializer

Usage in Deno

import { DefaultSerializer } from "node:v8";

A subclass of Serializer that serializes TypedArray(in particular Buffer) and DataView objects as host objects, and only stores the part of their underlying ArrayBuffers that they are referring to.

Back to top