The handler.isExtensible() method is a trap for the [[IsExtensible]] object internal method, which is used by operations such as Object.isExtensible().
const monster = {
canEvolve: true,
};
const handler = {
isExtensible(target) {
return Reflect.isExtensible(target);
},
preventExtensions(target) {
target.canEvolve = false;
return Reflect.preventExtensions(target);
},
};
const proxy = new Proxy(monster, handler);
console.log(Object.isExtensible(proxy));
// Expected output: true
console.log(monster.canEvolve);
// Expected output: true
Object.preventExtensions(proxy);
console.log(Object.isExtensible(proxy));
// Expected output: false
console.log(monster.canEvolve);
// Expected output: falsenew Proxy(target, {
isExtensible(target) {
}
})The following parameter is passed to the isExtensible() method. this is bound to the handler.
targetThe target object.
The isExtensible() method must return a Boolean indicating whether or not the target object is extensible. Other values are coerced to booleans.
This trap can intercept these operations:
Or any other operation that invokes the [[IsExtensible]] internal method.
The proxy's [[IsExtensible]] internal method throws a TypeError if the handler definition violates one of the following invariants:
Reflect.isExtensible() on the target object.The following code traps Object.isExtensible().
const p = new Proxy(
{},
{
isExtensible(target) {
console.log("called");
return true;
},
},
);
console.log(Object.isExtensible(p));
// "called"
// trueThe following code violates the invariant.
const p = new Proxy(
{},
{
isExtensible(target) {
return false;
},
},
);
Object.isExtensible(p); // TypeError is thrown