summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/isExtensible/15.2.3.13-0-1.js
blob: 13a3e8513d5388ab9438b39f32a277cf1e2814e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.2.3.13-0-1
description: Object.isExtensible must exist as a function
---*/

var f = Object.isExtensible;

assert.sameValue(typeof(f), "function", 'typeof(f)');

reportCompare(0, 0);