mirror of
https://github.com/DoneJS-Runtime/quickjs-done-nextgen.git
synced 2025-01-09 17:43:15 +00:00
5 lines
132 B
JavaScript
5 lines
132 B
JavaScript
|
import { assert } from "./assert.js"
|
||
|
const ref = new WeakRef({})
|
||
|
const val = ref.deref() // should not throw
|
||
|
assert(val, undefined)
|