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