summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/every/15.4.4.16-0-1.js
blob: 5748303499948e13b088a5c24636220d6971bd9c (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.

/*---
esid: sec-array.prototype.every
description: Array.prototype.every must exist as a function
---*/

var f = Array.prototype.every;

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

reportCompare(0, 0);