1
2
3
4
5
6
7
8
9
10
11
12
13
14
| "use strict";
|
| const versions = module.exports.versions = {
| '7_1': 0x71000001,
| '7_2': 0x72090002,
| '7_3_A': 0x730A0003,
| '7_3_B': 0x730B0003,
| '7_4': 0x74000004
| };
| const versionsByValue = module.exports.versionsByValue = {};
|
| for (const name in versions) {
| versionsByValue[versions[name]] = name;
| }
|
|