rquickjs-sys 0.14.0

QuickJS bindings for rquickjs
Documentation
1
2
3
4
5
import { assertThrows } from "./assert.js";

const ab = new ArrayBuffer(16, { maxByteLength: 16 });
const ta = new Int8Array(ab);
assertThrows(TypeError, function() { Object.preventExtensions(ta) });