Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 "use strict"; | 5 "use strict"; |
6 | 6 |
7 let platform = "chromium"; | 7 let platform = "chromium"; |
8 let platformVersion = null; | 8 let platformVersion = null; |
9 let application = null; | 9 let application = null; |
10 let applicationVersion; | 10 let applicationVersion; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
45 applicationVersion = platformVersion = "0"; | 45 applicationVersion = platformVersion = "0"; |
46 } | 46 } |
47 | 47 |
48 // no additional name/version, so this is upstream Chrome | 48 // no additional name/version, so this is upstream Chrome |
49 if (!application) | 49 if (!application) |
50 { | 50 { |
51 application = "chrome"; | 51 application = "chrome"; |
52 applicationVersion = platformVersion; | 52 applicationVersion = platformVersion; |
53 } | 53 } |
54 | 54 |
55 module.exports = { | |
Sebastian Noack
2017/03/31 10:42:01
Replacing module.exports isn't necessary:
expor
kzar
2017/03/31 14:03:01
Doing the assignments separately isn't necessary.
Sebastian Noack
2017/03/31 14:50:45
Well, this is how we do it for every other module,
kzar
2017/03/31 15:16:54
Done.
| |
56 addonName: {{ basename|json }}, | |
57 addonVersion: {{ version|json }}, | |
58 | 55 |
59 application, | 56 exports.addonName = {{ basename|json }}; |
60 applicationVersion, | 57 exports.addonVersion = {{ version|json }}; |
61 | 58 |
62 platform, | 59 exports.application = application; |
63 platformVersion | 60 exports.applicationVersion = applicationVersion; |
64 }; | 61 |
62 exports.platform = platform; | |
63 exports.platformVersion = platformVersion; | |
LEFT | RIGHT |