OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 16 matching lines...) Expand all Loading... |
27 | 27 |
28 return descriptor; | 28 return descriptor; |
29 } | 29 } |
30 exports.desc = desc; | 30 exports.desc = desc; |
31 | 31 |
32 function extend(cls, properties) | 32 function extend(cls, properties) |
33 { | 33 { |
34 return Object.create(cls.prototype, desc(properties)); | 34 return Object.create(cls.prototype, desc(properties)); |
35 } | 35 } |
36 exports.extend = extend; | 36 exports.extend = extend; |
| 37 |
| 38 function indexOf(iterable, searchElement) |
| 39 { |
| 40 return findIndex(iterable, item => item === searchElement); |
| 41 } |
| 42 exports.indexOf = indexOf; |
| 43 |
| 44 function findIndex(iterable, callback, thisArg) |
| 45 { |
| 46 let index = 0; |
| 47 for (let item of iterable) |
| 48 { |
| 49 if (callback.call(thisArg, item)) |
| 50 return index; |
| 51 |
| 52 index++; |
| 53 } |
| 54 |
| 55 return -1; |
| 56 } |
| 57 exports.findIndex = findIndex; |
OLD | NEW |