Skip to main content
Version: v1.2.0

proxy.isExtensible

Type: ProxyEvent

Fired when checking if new properties can be added to the proxy.

const proxy = nexo.create({});

nexo.on("proxy.isExtensible", () => {
console.log("Checking extensibility");
});

Object.isExtensible(proxy); // Logs: Checking extensibility