@@ -3,13 +3,14 @@ const jsDocPrefix = `${mdnPrefix}/JavaScript/`;
|
3 | 3 | |
4 | 4 | const jsDataStructuresUrl = `${jsDocPrefix}Data_structures`; |
5 | 5 | const jsPrimitives = { |
6 | | -boolean: 'Boolean', |
7 | | -integer: 'Number', // Not a primitive, used for clarification. |
8 | | -null: 'Null', |
9 | | -number: 'Number', |
10 | | -string: 'String', |
11 | | -symbol: 'Symbol', |
12 | | -undefined: 'Undefined', |
| 6 | +boolean: 'boolean', |
| 7 | +integer: 'number', // Not a primitive, used for clarification. |
| 8 | +null: 'null', |
| 9 | +number: 'number', |
| 10 | +string: 'string', |
| 11 | +symbol: 'symbol', |
| 12 | +undefined: 'undefined', |
| 13 | +bigint: 'bigint', |
13 | 14 | }; |
14 | 15 | |
15 | 16 | const jsGlobalObjectsUrl = `${jsDocPrefix}Reference/Global_Objects/`; |
@@ -43,7 +44,6 @@ const customTypesMap = {
|
43 | 44 | |
44 | 45 | 'AsyncGeneratorFunction': 'https://tc39.es/proposal-async-iteration/#sec-asyncgeneratorfunction-constructor', |
45 | 46 | |
46 | | -'bigint': `${jsDocPrefix}Reference/Global_Objects/BigInt`, |
47 | 47 | 'WebAssembly.Instance': |
48 | 48 | `${jsDocPrefix}Reference/Global_Objects/WebAssembly/Instance`, |
49 | 49 | 'WebAssembly.Memory': |
|