Left: | ||
Right: |
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 compareVersion(v1, v2) | |
39 { | |
40 let components1 = v1.split("."); | |
41 let components2 = v2.split("."); | |
42 let result = 0; | |
43 | |
44 for (let i = 0; result == 0 && (i < components1.length || | |
45 i < components2.length); i++) | |
46 { | |
47 let comp1 = components1[i]; | |
48 let comp2 = components2[i]; | |
49 | |
50 result = (comp1 == "*" ? Number.MAX_VALUE : parseInt(comp1, 10) || 0) - | |
Manish Jethani
2017/09/19 07:53:14
I'd just like to point out that parseInt doesn't j
Manish Jethani
2017/09/19 08:21:40
Bitwise OR-ing with 0 will mess up any values larg
Sebastian Noack
2017/09/19 22:53:43
How exactly might parseInt() return Infinity? It s
Manish Jethani
2017/09/20 01:15:38
Number.MAX_VALUE is approximately 1.79E+308, so fo
Sebastian Noack
2017/09/20 01:31:25
Interesting. It's probably not a too relevant scen
| |
51 (comp2 == "*" ? Number.MAX_VALUE : parseInt(comp2, 10) || 0); | |
Manish Jethani
2017/09/19 07:53:14
Also of course this version differs from the previ
| |
52 } | |
53 | |
54 return result; | |
55 } | |
56 exports.compareVersion = compareVersion; | |
OLD | NEW |