v8_valueserializer 0.1.2

A Rust implementation of V8's ValueSerializer and ValueDeserializer
Documentation
1
2
3
4
5
6
7
---
source: tests/serde.rs
description: "=== SOURCE ===\nconst arr = new Array(2); arr[0] = arr; arr"
---
const v0 = new Array(2);
v0[0] = v0;
v0