-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.js
99 lines (81 loc) · 2.24 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
var UNDEFINED_INDEX = -1;
var ARRAY_HOLE_INDEX = -2;
function encode(value) {
return JSON.stringify(tabulate(value));
}
function tabulate(value) {
var values = [];
var table = [];
var indexMap = typeof Map === "function" && new Map;
function getIndex(value) {
if (typeof value === "undefined") {
// An out-of-bounds array access always returns undefined!
return UNDEFINED_INDEX;
}
var index;
if (indexMap) {
// If we have Map, use it instead of values.indexOf to accelerate
// object lookups.
index = indexMap.get(value);
if (typeof index === "undefined") {
index = values.push(value) - 1;
indexMap.set(value, index);
}
} else {
index = values.indexOf(value);
if (index < 0) {
index = values.push(value) - 1;
}
}
return index;
}
// Assign the root value to values[0].
getIndex(value);
function copy(value) {
var result = value;
if (value && typeof value === "object") {
var keys = Object.keys(value);
if (Array.isArray(value)) {
result = Array(value.length);
var len = value.length;
if (len > keys.length) {
// The array has holes, so make sure we fill them with the
// ARRAY_HOLE_INDEX constant.
for (var i = 0; i < len; ++i) {
result[i] = ARRAY_HOLE_INDEX;
}
}
} else {
result = {};
}
keys.forEach(function (key) {
result[key] = getIndex(value[key]);
});
}
return result;
}
// Note that this for loop cannot be a forEach loop, because
// values.length is expected to change during iteration.
for (var v = 0; v < values.length; ++v) {
table[v] = copy(values[v]);
}
return table;
}
function decode(encoding) {
var table = JSON.parse(encoding);
table.forEach(function (entry) {
if (entry && typeof entry === "object") {
Object.keys(entry).forEach(function (key) {
var index = entry[key];
if (index === ARRAY_HOLE_INDEX) {
delete entry[key];
} else {
entry[key] = table[index];
}
});
}
});
return table[0];
}
exports.encode = exports.stringify = encode;
exports.decode = exports.parse = decode;