mcbe-leveldb 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DBUtils.js +114 -0
- package/DBUtils.js.map +1 -0
- package/DBUtils.ts +169 -0
- package/LevelUtils.js +1168 -0
- package/LevelUtils.js.map +1 -0
- package/LevelUtils.ts +1965 -0
- package/SNBTUtils.js +1374 -0
- package/SNBTUtils.js.map +1 -0
- package/SNBTUtils.ts +1725 -0
- package/__biome_data__.js +278 -0
- package/__biome_data__.js.map +1 -0
- package/__biome_data__.ts +277 -0
- package/index.js +6 -0
- package/index.js.map +1 -0
- package/index.ts +5 -0
- package/nbtSchemas.js +9211 -0
- package/nbtSchemas.js.map +1 -0
- package/nbtSchemas.ts +17213 -0
- package/package.json +60 -0
- package/tsconfig.json +24 -0
- package/tsconfig.production.json +25 -0
- package/types.d.ts +501 -0
- package/utils/JSONB.js +348 -0
- package/utils/JSONB.js.map +1 -0
- package/utils/JSONB.ts +566 -0
package/utils/JSONB.js
ADDED
|
@@ -0,0 +1,348 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* JSONB.ts
|
|
3
|
+
* An improved version of {@link JSON}
|
|
4
|
+
* @module
|
|
5
|
+
* @description This file contains the `JSONB` class.
|
|
6
|
+
* @author 8Crafter
|
|
7
|
+
*/
|
|
8
|
+
// This version of the JSONB class is modified to not be on globalThis.
|
|
9
|
+
/**
|
|
10
|
+
* An intrinsic object that provides functions to convert JavaScript values to and from the JavaScript Object Notation (JSON) format.
|
|
11
|
+
*
|
|
12
|
+
* This is an improved version of {@link JSON}.
|
|
13
|
+
*
|
|
14
|
+
* @author 8Crafter
|
|
15
|
+
*/
|
|
16
|
+
export const JSONB = {};
|
|
17
|
+
(function () {
|
|
18
|
+
"use strict";
|
|
19
|
+
/**
|
|
20
|
+
* Asserts that a value is not `undefined` or `null`.
|
|
21
|
+
*
|
|
22
|
+
* @template T The type of the value to check.
|
|
23
|
+
* @param {T} value The value to check.
|
|
24
|
+
* @returns {asserts value is NonNullable<T>} Asserts that the value is not `undefined` or `null`.
|
|
25
|
+
*
|
|
26
|
+
* @throws {Error} If the value is `undefined` or `null`.
|
|
27
|
+
*/
|
|
28
|
+
function assertIsDefined(value) {
|
|
29
|
+
if (value === undefined || value === null) {
|
|
30
|
+
throw new Error(`${value} is not defined`);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
var rx_one = /^[\],:{}\s]*$/;
|
|
34
|
+
var rx_two = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g;
|
|
35
|
+
var rx_three = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g;
|
|
36
|
+
var rx_four = /(?:^|:|,)(?:\s*\[)+/g;
|
|
37
|
+
var rx_escapable = /[\\"\u0000-\u001f\u007f-\u009f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g;
|
|
38
|
+
var rx_dangerous = /[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g;
|
|
39
|
+
function f(n) {
|
|
40
|
+
// Format integers to have at least two digits.
|
|
41
|
+
return n < 10 ? "0" + n : n;
|
|
42
|
+
}
|
|
43
|
+
function this_value() {
|
|
44
|
+
return this.valueOf();
|
|
45
|
+
}
|
|
46
|
+
if (typeof Date.prototype.toJSON !== "function") {
|
|
47
|
+
Date.prototype.toJSON = function () {
|
|
48
|
+
return isFinite(this.valueOf())
|
|
49
|
+
? this.getUTCFullYear() +
|
|
50
|
+
"-" +
|
|
51
|
+
f(this.getUTCMonth() + 1) +
|
|
52
|
+
"-" +
|
|
53
|
+
f(this.getUTCDate()) +
|
|
54
|
+
"T" +
|
|
55
|
+
f(this.getUTCHours()) +
|
|
56
|
+
":" +
|
|
57
|
+
f(this.getUTCMinutes()) +
|
|
58
|
+
":" +
|
|
59
|
+
f(this.getUTCSeconds()) +
|
|
60
|
+
"Z"
|
|
61
|
+
: null;
|
|
62
|
+
}; /*
|
|
63
|
+
|
|
64
|
+
Boolean.prototype.toJSON = this_value;
|
|
65
|
+
Number.prototype.toJSON = this_value;
|
|
66
|
+
String.prototype.toJSON = this_value;*/
|
|
67
|
+
}
|
|
68
|
+
var gap;
|
|
69
|
+
var indent;
|
|
70
|
+
var meta;
|
|
71
|
+
var rep;
|
|
72
|
+
function quote(string) {
|
|
73
|
+
// If the string contains no control characters, no quote characters, and no
|
|
74
|
+
// backslash characters, then we can safely slap some quotes around it.
|
|
75
|
+
// Otherwise we must also replace the offending characters with safe escape
|
|
76
|
+
// sequences.
|
|
77
|
+
rx_escapable.lastIndex = 0;
|
|
78
|
+
return rx_escapable.test(string)
|
|
79
|
+
? '"' +
|
|
80
|
+
string.replace(rx_escapable, function (a) {
|
|
81
|
+
var c = meta[a];
|
|
82
|
+
return typeof c === "string" ? c : "\\u" + ("0000" + a.charCodeAt(0).toString(16)).slice(-4);
|
|
83
|
+
}) +
|
|
84
|
+
'"'
|
|
85
|
+
: '"' + string + '"';
|
|
86
|
+
}
|
|
87
|
+
function str(key, holder, options) {
|
|
88
|
+
// Produce a string from holder[key].
|
|
89
|
+
var i; // The loop counter.
|
|
90
|
+
var k; // The member key.
|
|
91
|
+
var v; // The member value.
|
|
92
|
+
var length;
|
|
93
|
+
var mind = gap;
|
|
94
|
+
var partial;
|
|
95
|
+
var value = holder[key];
|
|
96
|
+
if (options?.get) {
|
|
97
|
+
if (Object.hasOwn(holder, "__lookupGetter__") ? !!holder?.__lookupGetter__(key) : false) {
|
|
98
|
+
if (options.set) {
|
|
99
|
+
if (!!holder.__lookupSetter__(key)) {
|
|
100
|
+
value = { get: holder.__lookupGetter__(key), set: holder.__lookupSetter__(key) };
|
|
101
|
+
}
|
|
102
|
+
else {
|
|
103
|
+
value = { get: holder.__lookupGetter__(key) };
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
else {
|
|
107
|
+
value = { get: holder.__lookupGetter__(key) };
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
else if (options.set) {
|
|
111
|
+
if (Object.hasOwn(holder, "__lookupSetter__") ? !!holder.__lookupSetter__(key) : false) {
|
|
112
|
+
value = { set: holder.__lookupSetter__(key) };
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
else if (options?.set) {
|
|
117
|
+
if (Object.hasOwn(holder, "__lookupSetter__") ? !!holder.__lookupSetter__(key) : false) {
|
|
118
|
+
value = { set: holder.__lookupSetter__(key) };
|
|
119
|
+
}
|
|
120
|
+
} /*
|
|
121
|
+
|
|
122
|
+
// If the value is an instance of the Decimal or Decimal2 class, convert it to decimal type.
|
|
123
|
+
|
|
124
|
+
if (
|
|
125
|
+
value
|
|
126
|
+
&& typeof value === "object"
|
|
127
|
+
&& typeof value.toJSONB === "function"
|
|
128
|
+
) {
|
|
129
|
+
value = value.toJSONB(key);
|
|
130
|
+
} */
|
|
131
|
+
// If the value has a toJSONB or toJSON method, call it to obtain a replacement value.
|
|
132
|
+
if (value && typeof value === "object" && typeof value.toJSONB === "function") {
|
|
133
|
+
value = value.toJSONB(key);
|
|
134
|
+
}
|
|
135
|
+
else if (value && typeof value === "object" && typeof value.toJSON === "function") {
|
|
136
|
+
value = value.toJSON(key);
|
|
137
|
+
}
|
|
138
|
+
// If we were called with a replacer function, then call the replacer to
|
|
139
|
+
// obtain a replacement value.
|
|
140
|
+
if (typeof rep === "function") {
|
|
141
|
+
value = rep.call(holder, key.toString(), value);
|
|
142
|
+
}
|
|
143
|
+
// What happens next depends on the value's type.
|
|
144
|
+
switch (typeof value) {
|
|
145
|
+
case "string":
|
|
146
|
+
return quote(value);
|
|
147
|
+
case "number":
|
|
148
|
+
// JSONB numbers must be finite. Encode non-finite numbers as null.
|
|
149
|
+
return isFinite(value)
|
|
150
|
+
? String(value)
|
|
151
|
+
: value == Infinity
|
|
152
|
+
? options?.Infinity ?? true
|
|
153
|
+
? "Infinity"
|
|
154
|
+
: "null"
|
|
155
|
+
: value == -Infinity
|
|
156
|
+
? options?.NegativeInfinity ?? true
|
|
157
|
+
? "-Infinity"
|
|
158
|
+
: "null"
|
|
159
|
+
: Number.isNaN(value)
|
|
160
|
+
? options?.NaN ?? true
|
|
161
|
+
? "NaN"
|
|
162
|
+
: "null"
|
|
163
|
+
: "null";
|
|
164
|
+
case "bigint":
|
|
165
|
+
return options?.bigint ?? true ? String(value) + "n" : "null";
|
|
166
|
+
case "undefined":
|
|
167
|
+
return options?.undefined ?? true ? "undefined" : undefined;
|
|
168
|
+
case "function":
|
|
169
|
+
return options?.function ?? false ? value.toString() : undefined;
|
|
170
|
+
case "boolean":
|
|
171
|
+
// @ts-ignore
|
|
172
|
+
case "null":
|
|
173
|
+
// If the value is a boolean or null, convert it to a string. Note:
|
|
174
|
+
// typeof null does not produce "null". The case is included here in
|
|
175
|
+
// the remote chance that this gets fixed someday.
|
|
176
|
+
return String(value);
|
|
177
|
+
// If the type is "object", we might be dealing with an object or an array or
|
|
178
|
+
// null.
|
|
179
|
+
case "object":
|
|
180
|
+
// Due to a specification blunder in ECMAScript, typeof null is "object",
|
|
181
|
+
// so watch out for that case.
|
|
182
|
+
if (!value) {
|
|
183
|
+
return "null";
|
|
184
|
+
}
|
|
185
|
+
// Make an array to hold the partial results of stringifying this object value.
|
|
186
|
+
gap += indent;
|
|
187
|
+
partial = [];
|
|
188
|
+
// Is the value an array?
|
|
189
|
+
if (Object.prototype.toString.apply(value) === "[object Array]") {
|
|
190
|
+
// The value is an array. Stringify every element. Use null as a placeholder
|
|
191
|
+
// for non-JSONB values.
|
|
192
|
+
length = value.length;
|
|
193
|
+
for (i = 0; i < length; i += 1) {
|
|
194
|
+
partial[i] = str(i, value, options) || "null";
|
|
195
|
+
}
|
|
196
|
+
// Join all of the elements together, separated with commas, and wrap them in
|
|
197
|
+
// brackets.
|
|
198
|
+
v = partial.length === 0 ? "[]" : gap ? "[\n" + gap + partial.join(",\n" + gap) + "\n" + mind + "]" : "[" + partial.join(",") + "]";
|
|
199
|
+
gap = mind;
|
|
200
|
+
return v;
|
|
201
|
+
}
|
|
202
|
+
// If the replacer is an array, use it to select the members to be stringified.
|
|
203
|
+
if (rep && typeof rep === "object") {
|
|
204
|
+
length = rep.length;
|
|
205
|
+
for (i = 0; i < length; i += 1) {
|
|
206
|
+
if (typeof rep[i] === "string") {
|
|
207
|
+
k = rep[i];
|
|
208
|
+
v = str(k, value, options);
|
|
209
|
+
if (v) {
|
|
210
|
+
partial.push(quote(k.toString()) + (gap ? ": " : ":") + v);
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
else {
|
|
216
|
+
// Otherwise, iterate through all of the keys in the object.
|
|
217
|
+
for (k in value) {
|
|
218
|
+
if (Object.prototype.hasOwnProperty.call(value, k)) {
|
|
219
|
+
v = str(k, value, options);
|
|
220
|
+
if (v) {
|
|
221
|
+
partial.push(quote(k) + (gap ? ": " : ":") + v);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
// Join all of the member texts together, separated with commas,
|
|
227
|
+
// and wrap them in braces.
|
|
228
|
+
v = partial.length === 0 ? "{}" : gap ? "{\n" + gap + partial.join(",\n" + gap) + "\n" + mind + "}" : "{" + partial.join(",") + "}";
|
|
229
|
+
gap = mind;
|
|
230
|
+
return v;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
// If the JSONB object does not yet have a stringify method, give it one.
|
|
234
|
+
if (typeof JSONB.stringify !== "function") {
|
|
235
|
+
meta = {
|
|
236
|
+
// table of character substitutions
|
|
237
|
+
"\b": "\\b",
|
|
238
|
+
"\t": "\\t",
|
|
239
|
+
"\n": "\\n",
|
|
240
|
+
"\f": "\\f",
|
|
241
|
+
"\r": "\\r",
|
|
242
|
+
'"': '\\"',
|
|
243
|
+
"\\": "\\\\",
|
|
244
|
+
};
|
|
245
|
+
JSONB.stringify = function (value, replacer, space, options = { bigint: true, undefined: true, Infinity: true, NegativeInfinity: true, NaN: true, get: false, set: false, function: false, class: false }) {
|
|
246
|
+
// The stringify method takes a value and an optional replacer, and an optional
|
|
247
|
+
// space parameter, and returns a JSONB text. The replacer can be a function
|
|
248
|
+
// that can replace values, or an array of strings that will select the keys.
|
|
249
|
+
// A default replacer method can be provided. Use of the space parameter can
|
|
250
|
+
// produce text that is more easily readable.
|
|
251
|
+
var i;
|
|
252
|
+
gap = "";
|
|
253
|
+
indent = "";
|
|
254
|
+
// If the space parameter is a number, make an indent string containing that
|
|
255
|
+
// many spaces.
|
|
256
|
+
if (typeof space === "number") {
|
|
257
|
+
for (i = 0; i < space; i += 1) {
|
|
258
|
+
indent += " ";
|
|
259
|
+
}
|
|
260
|
+
// If the space parameter is a string, it will be used as the indent string.
|
|
261
|
+
}
|
|
262
|
+
else if (typeof space === "string") {
|
|
263
|
+
indent = space;
|
|
264
|
+
}
|
|
265
|
+
// If there is a replacer, it must be a function or an array.
|
|
266
|
+
// Otherwise, throw an error.
|
|
267
|
+
rep = replacer;
|
|
268
|
+
if (replacer && typeof replacer !== "function" && (typeof replacer !== "object" || typeof replacer.length !== "number")) {
|
|
269
|
+
throw new SyntaxError("Invalid Replacer");
|
|
270
|
+
}
|
|
271
|
+
// Make a fake root object containing our value under the key of "".
|
|
272
|
+
// Return the result of stringifying the value.
|
|
273
|
+
return str("", { "": value }, options);
|
|
274
|
+
};
|
|
275
|
+
}
|
|
276
|
+
// If the JSONB object does not yet have a parse method, give it one.
|
|
277
|
+
if (typeof JSONB.parse !== "function") {
|
|
278
|
+
JSONB.parse = function (text, reviver, options = { bigint: true, undefined: true, Infinity: true, NegativeInfinity: true, NaN: true, get: false, set: false, function: false, class: false }) {
|
|
279
|
+
// The parse method takes a text and an optional reviver function, and returns
|
|
280
|
+
// a JavaScript value if the text is a valid JSONB text.
|
|
281
|
+
var j;
|
|
282
|
+
var rx_three_b = RegExp(`"[^"\\\\\\n\\r]*"|true|false|null|${options.undefined ?? true ? "undefined|" : ""}${options.Infinity ?? true ? "Infinity|" : ""}${options.NegativeInfinity ?? true ? "-Infinity|" : ""}${options.NaN ?? true ? "NaN|" : ""}-?\\d+${options.bigint ?? true ? `(?:n|(?:\\.\\d*)?(?:[eE][+\\-]?\\d+)?)` : `(?:\\.\\d*)?(?:[eE][+\\-]?\\d+)?`}`, "g");
|
|
283
|
+
function walk(holder, key) {
|
|
284
|
+
assertIsDefined(reviver);
|
|
285
|
+
// The walk method is used to recursively walk the resulting structure so
|
|
286
|
+
// that modifications can be made.
|
|
287
|
+
var k;
|
|
288
|
+
var v;
|
|
289
|
+
var value = holder[key];
|
|
290
|
+
if (value && typeof value === "object") {
|
|
291
|
+
for (k in value) {
|
|
292
|
+
if (Object.prototype.hasOwnProperty.call(value, k)) {
|
|
293
|
+
v = walk(value, k);
|
|
294
|
+
if (v !== undefined) {
|
|
295
|
+
value[k] = v;
|
|
296
|
+
}
|
|
297
|
+
else {
|
|
298
|
+
delete value[k];
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
return reviver.call(holder, key, value);
|
|
304
|
+
}
|
|
305
|
+
// Parsing happens in four stages. In the first stage, we replace certain
|
|
306
|
+
// Unicode characters with escape sequences. JavaScript handles many characters
|
|
307
|
+
// incorrectly, either silently deleting them, or treating them as line endings.
|
|
308
|
+
text = String(text);
|
|
309
|
+
rx_dangerous.lastIndex = 0;
|
|
310
|
+
if (rx_dangerous.test(text)) {
|
|
311
|
+
text = text.replace(rx_dangerous, function (a) {
|
|
312
|
+
return "\\u" + ("0000" + a.charCodeAt(0).toString(16)).slice(-4);
|
|
313
|
+
});
|
|
314
|
+
}
|
|
315
|
+
// In the second stage, we run the text against regular expressions that look
|
|
316
|
+
// for non-JSONB patterns. We are especially concerned with "()" and "new"
|
|
317
|
+
// because they can cause invocation, and "=" because it can cause mutation.
|
|
318
|
+
// But just to be safe, we want to reject all unexpected forms.
|
|
319
|
+
// We split the second stage into 4 regexp operations in order to work around
|
|
320
|
+
// crippling inefficiencies in IE's and Safari's regexp engines. First we
|
|
321
|
+
// replace the JSONB backslash pairs with "@" (a non-JSONB character). Second, we
|
|
322
|
+
// replace all simple value tokens with "]" characters. Third, we delete all
|
|
323
|
+
// open brackets that follow a colon or comma or that begin the text. Finally,
|
|
324
|
+
// we look to see that the remaining characters are only whitespace or "]" or
|
|
325
|
+
// "," or ":" or "{" or "}". If that is so, then the text is safe for eval.
|
|
326
|
+
/* console.log(
|
|
327
|
+
text
|
|
328
|
+
.replace(rx_two, "@")
|
|
329
|
+
.replace(rx_three_b, "]")
|
|
330
|
+
.replace(rx_four, "")
|
|
331
|
+
) */
|
|
332
|
+
if (rx_one.test(text.replace(rx_two, "@").replace(rx_three_b, "]").replace(rx_four, ""))) {
|
|
333
|
+
// In the third stage we use the eval function to compile the text into a
|
|
334
|
+
// JavaScript structure. The "{" operator is subject to a syntactic ambiguity
|
|
335
|
+
// in JavaScript: it can begin a block or an object literal. We wrap the text
|
|
336
|
+
// in parens to eliminate the ambiguity.
|
|
337
|
+
j = eval("(" + text + ")");
|
|
338
|
+
// In the optional fourth stage, we recursively walk the new structure, passing
|
|
339
|
+
// each name/value pair to a reviver function for possible transformation.
|
|
340
|
+
return typeof reviver === "function" ? walk({ "": j }, "") : j;
|
|
341
|
+
}
|
|
342
|
+
// If the text is not JSONB parseable, then a SyntaxError is thrown.
|
|
343
|
+
throw new SyntaxError("JSONB.parse");
|
|
344
|
+
};
|
|
345
|
+
}
|
|
346
|
+
})();
|
|
347
|
+
// globalThis.JSONB = JSONB;
|
|
348
|
+
//# sourceMappingURL=JSONB.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JSONB.js","sourceRoot":"","sources":["JSONB.ts"],"names":[],"mappings":"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"}
|