// ES5 15.2.3.13// http://es5.github.com/#x15.2.3.13if (!Object.isExtensible) {
Object.isExtensible = functionisExtensible(object) {
if (Object(object) !== object) {
thrownewTypeError('Object.isExtensible can only be called on Objects.');
}
returntrue;
};
}