The handler.preventExtensions()
method is a trap for Object.preventExtensions()
.
var p = new Proxy(target, { preventExtensions: function(target) { } });
The following parameter is passed to the preventExtensions
method. this
is bound to the handler.
target
The preventExtensions
method must return a boolean value.
The handler.preventExtensions()
method is a trap for Object.preventExtensions()
.
This trap can intercept these operations:
If the following invariants are violated, the proxy will throw a TypeError
:
Object.preventExtensions(proxy)
only returns true
if Object.isExtensible(proxy)
is false
.The following code traps Object.preventExtensions()
.
var p = new Proxy({}, { preventExtensions: function(target) { console.log('called'); Object.preventExtensions(target); return true; } }); console.log(Object.preventExtensions(p)); // "called" // false
The following code violates the invariant.
var p = new Proxy({}, { preventExtensions: function(target) { return true; } }); Object.preventExtensions(p); // TypeError is thrown
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of '[[PreventExtensions]]' in that specification. | Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262) The definition of '[[PreventExtensions]]' in that specification. | Draft |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 49 | 12 | 22 | No | 36 | 10 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 49 | 49 | Yes | 22 | 36 | 10 | 5.0 |
Server | |
---|---|
Node.js | |
Basic support | 6.0.0 |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/handler/preventExtensions