summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-20.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-20.js')
-rw-r--r--test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-20.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-20.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-20.js
index d39314005..320cb9899 100644
--- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-20.js
+++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-20.js
@@ -10,20 +10,20 @@ description: >
accessor property on an Array
---*/
-function callbackfn(val, idx, obj) {
- if (idx === 0) {
- return typeof val === "undefined";
- }
- return false;
-}
+ function callbackfn(val, idx, obj) {
+ if (idx === 0) {
+ return typeof val === "undefined";
+ }
+ return false;
+ }
-var arr = [];
+ var arr = [];
-Object.defineProperty(arr, "0", {
- set: function() {},
- configurable: true
-});
+ Object.defineProperty(arr, "0", {
+ set: function () { },
+ configurable: true
+ });
-Array.prototype[0] = 100;
+ Array.prototype[0] = 100;
assert(arr.some(callbackfn), 'arr.some(callbackfn) !== true');