Wraps an object in a protective Proxy that allows extension (adding new keys) but prevents modification or deletion of existing keys.
The object to secure
The append-only secured Proxy
const ref = secureRef({ initial: 1 }); Copy
const ref = secureRef({ initial: 1 });
Wraps an object in a protective Proxy that allows extension (adding new keys) but prevents modification or deletion of existing keys.