otsdaq_utilities  v2_05_02_indev
polyfills.js
1 
2 
3 
4 // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex
5 if (!Array.prototype.findIndex) {
6  Object.defineProperty(Array.prototype, 'findIndex', {
7  value: function(predicate) {
8  // 1. Let O be ? ToObject(this value).
9  if (this == null) {
10  throw new TypeError('"this" is null or not defined');
11  }
12 
13  var o = Object(this);
14 
15  // 2. Let len be ? ToLength(? Get(O, "length")).
16  var len = o.length >>> 0;
17 
18  // 3. If IsCallable(predicate) is false, throw a TypeError exception.
19  if (typeof predicate !== 'function') {
20  throw new TypeError('predicate must be a function');
21  }
22 
23  // 4. If thisArg was supplied, let T be thisArg; else let T be undefined.
24  var thisArg = arguments[1];
25 
26  // 5. Let k be 0.
27  var k = 0;
28 
29  // 6. Repeat, while k < len
30  while (k < len) {
31  // a. Let Pk be ! ToString(k).
32  // b. Let kValue be ? Get(O, Pk).
33  // c. Let testResult be ToBoolean(? Call(predicate, T, « kValue, k, O »)).
34  // d. If testResult is true, return k.
35  var kValue = o[k];
36  if (predicate.call(thisArg, kValue, k, o)) {
37  return k;
38  }
39  // e. Increase k by 1.
40  k++;
41  }
42 
43  // 7. Return -1.
44  return -1;
45  }
46  });
47 }
48 
49 // https://tc39.github.io/ecma262/#sec-array.prototype.find
50 if (!Array.prototype.find) {
51  Object.defineProperty(Array.prototype, 'find', {
52  value: function(predicate) {
53  // 1. Let O be ? ToObject(this value).
54  if (this == null) {
55  throw new TypeError('"this" is null or not defined');
56  }
57 
58  var o = Object(this);
59 
60  // 2. Let len be ? ToLength(? Get(O, "length")).
61  var len = o.length >>> 0;
62 
63  // 3. If IsCallable(predicate) is false, throw a TypeError exception.
64  if (typeof predicate !== 'function') {
65  throw new TypeError('predicate must be a function');
66  }
67 
68  // 4. If thisArg was supplied, let T be thisArg; else let T be undefined.
69  var thisArg = arguments[1];
70 
71  // 5. Let k be 0.
72  var k = 0;
73 
74  // 6. Repeat, while k < len
75  while (k < len) {
76  // a. Let Pk be ! ToString(k).
77  // b. Let kValue be ? Get(O, Pk).
78  // c. Let testResult be ToBoolean(? Call(predicate, T, « kValue, k, O »)).
79  // d. If testResult is true, return kValue.
80  var kValue = o[k];
81  if (predicate.call(thisArg, kValue, k, o)) {
82  return kValue;
83  }
84  // e. Increase k by 1.
85  k++;
86  }
87 
88  // 7. Return undefined.
89  return undefined;
90  }
91  });
92 }