15.2.3.13 Object.isExtensible(O)

2010-07-04

boolean Object.isExtensible(O:object) throws TypeError

Can properties be added to object O?

Code: (Meta Ecma)
Object.isExtensible = function(O){
if (Type(O) != 'Object') throw TypeError;
return O.[[Extensible]];
}