mq-nodejs 0.1.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/README.md +216 -0
- package/dist/core.d.mts +79 -0
- package/dist/core.d.ts +79 -0
- package/dist/core.js +2 -0
- package/dist/core.mjs +2 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -0
- package/dist/mq_wasm.js +651 -0
- package/dist/mq_wasm_bg.js +637 -0
- package/dist/mq_wasm_bg.wasm +0 -0
- package/package.json +54 -0
|
@@ -0,0 +1,637 @@
|
|
|
1
|
+
export class ConversionOptions {
|
|
2
|
+
__destroy_into_raw() {
|
|
3
|
+
const ptr = this.__wbg_ptr;
|
|
4
|
+
this.__wbg_ptr = 0;
|
|
5
|
+
ConversionOptionsFinalization.unregister(this);
|
|
6
|
+
return ptr;
|
|
7
|
+
}
|
|
8
|
+
free() {
|
|
9
|
+
const ptr = this.__destroy_into_raw();
|
|
10
|
+
wasm.__wbg_conversionoptions_free(ptr, 0);
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @returns {boolean}
|
|
14
|
+
*/
|
|
15
|
+
get extract_scripts_as_code_blocks() {
|
|
16
|
+
const ret = wasm.__wbg_get_conversionoptions_extract_scripts_as_code_blocks(this.__wbg_ptr);
|
|
17
|
+
return ret !== 0;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* @returns {boolean}
|
|
21
|
+
*/
|
|
22
|
+
get generate_front_matter() {
|
|
23
|
+
const ret = wasm.__wbg_get_conversionoptions_generate_front_matter(this.__wbg_ptr);
|
|
24
|
+
return ret !== 0;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* @returns {boolean}
|
|
28
|
+
*/
|
|
29
|
+
get use_title_as_h1() {
|
|
30
|
+
const ret = wasm.__wbg_get_conversionoptions_use_title_as_h1(this.__wbg_ptr);
|
|
31
|
+
return ret !== 0;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* @param {boolean} arg0
|
|
35
|
+
*/
|
|
36
|
+
set extract_scripts_as_code_blocks(arg0) {
|
|
37
|
+
wasm.__wbg_set_conversionoptions_extract_scripts_as_code_blocks(this.__wbg_ptr, arg0);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* @param {boolean} arg0
|
|
41
|
+
*/
|
|
42
|
+
set generate_front_matter(arg0) {
|
|
43
|
+
wasm.__wbg_set_conversionoptions_generate_front_matter(this.__wbg_ptr, arg0);
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* @param {boolean} arg0
|
|
47
|
+
*/
|
|
48
|
+
set use_title_as_h1(arg0) {
|
|
49
|
+
wasm.__wbg_set_conversionoptions_use_title_as_h1(this.__wbg_ptr, arg0);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
if (Symbol.dispose) ConversionOptions.prototype[Symbol.dispose] = ConversionOptions.prototype.free;
|
|
53
|
+
|
|
54
|
+
export class RunOptions {
|
|
55
|
+
__destroy_into_raw() {
|
|
56
|
+
const ptr = this.__wbg_ptr;
|
|
57
|
+
this.__wbg_ptr = 0;
|
|
58
|
+
RunOptionsFinalization.unregister(this);
|
|
59
|
+
return ptr;
|
|
60
|
+
}
|
|
61
|
+
free() {
|
|
62
|
+
const ptr = this.__destroy_into_raw();
|
|
63
|
+
wasm.__wbg_runoptions_free(ptr, 0);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
if (Symbol.dispose) RunOptions.prototype[Symbol.dispose] = RunOptions.prototype.free;
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* @param {string} code
|
|
70
|
+
* @param {string | null} [module]
|
|
71
|
+
* @returns {Promise<any>}
|
|
72
|
+
*/
|
|
73
|
+
export function definedValues(code, module) {
|
|
74
|
+
const ptr0 = passStringToWasm0(code, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
75
|
+
const len0 = WASM_VECTOR_LEN;
|
|
76
|
+
var ptr1 = isLikeNone(module) ? 0 : passStringToWasm0(module, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
77
|
+
var len1 = WASM_VECTOR_LEN;
|
|
78
|
+
const ret = wasm.definedValues(ptr0, len0, ptr1, len1);
|
|
79
|
+
return takeObject(ret);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* @param {string} code
|
|
84
|
+
* @param {boolean | null} [enable_type_check]
|
|
85
|
+
* @returns {Promise<any>}
|
|
86
|
+
*/
|
|
87
|
+
export function diagnostics(code, enable_type_check) {
|
|
88
|
+
const ptr0 = passStringToWasm0(code, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
89
|
+
const len0 = WASM_VECTOR_LEN;
|
|
90
|
+
const ret = wasm.diagnostics(ptr0, len0, isLikeNone(enable_type_check) ? 0xFFFFFF : enable_type_check ? 1 : 0);
|
|
91
|
+
return takeObject(ret);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* @param {string} code
|
|
96
|
+
* @returns {Promise<string>}
|
|
97
|
+
*/
|
|
98
|
+
export function format(code) {
|
|
99
|
+
const ptr0 = passStringToWasm0(code, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
100
|
+
const len0 = WASM_VECTOR_LEN;
|
|
101
|
+
const ret = wasm.format(ptr0, len0);
|
|
102
|
+
return takeObject(ret);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* @param {string} html_input
|
|
107
|
+
* @param {ConversionOptions | null} [options]
|
|
108
|
+
* @returns {Promise<string>}
|
|
109
|
+
*/
|
|
110
|
+
export function htmlToMarkdown(html_input, options) {
|
|
111
|
+
const ptr0 = passStringToWasm0(html_input, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
112
|
+
const len0 = WASM_VECTOR_LEN;
|
|
113
|
+
let ptr1 = 0;
|
|
114
|
+
if (!isLikeNone(options)) {
|
|
115
|
+
_assertClass(options, ConversionOptions);
|
|
116
|
+
ptr1 = options.__destroy_into_raw();
|
|
117
|
+
}
|
|
118
|
+
const ret = wasm.htmlToMarkdown(ptr0, len0, ptr1);
|
|
119
|
+
return takeObject(ret);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* @param {string} code
|
|
124
|
+
* @returns {Promise<any>}
|
|
125
|
+
*/
|
|
126
|
+
export function inlayHints(code) {
|
|
127
|
+
const ptr0 = passStringToWasm0(code, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
128
|
+
const len0 = WASM_VECTOR_LEN;
|
|
129
|
+
const ret = wasm.inlayHints(ptr0, len0);
|
|
130
|
+
return takeObject(ret);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* @param {string} code
|
|
135
|
+
* @param {string} content
|
|
136
|
+
* @param {any} options
|
|
137
|
+
* @returns {Promise<string>}
|
|
138
|
+
*/
|
|
139
|
+
export function run(code, content, options) {
|
|
140
|
+
const ptr0 = passStringToWasm0(code, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
141
|
+
const len0 = WASM_VECTOR_LEN;
|
|
142
|
+
const ptr1 = passStringToWasm0(content, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
143
|
+
const len1 = WASM_VECTOR_LEN;
|
|
144
|
+
const ret = wasm.run(ptr0, len0, ptr1, len1, addHeapObject(options));
|
|
145
|
+
return takeObject(ret);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* @param {string} code
|
|
150
|
+
* @returns {Promise<string>}
|
|
151
|
+
*/
|
|
152
|
+
export function toAst(code) {
|
|
153
|
+
const ptr0 = passStringToWasm0(code, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
154
|
+
const len0 = WASM_VECTOR_LEN;
|
|
155
|
+
const ret = wasm.toAst(ptr0, len0);
|
|
156
|
+
return takeObject(ret);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* @param {string} markdown_input
|
|
161
|
+
* @returns {Promise<string>}
|
|
162
|
+
*/
|
|
163
|
+
export function toHtml(markdown_input) {
|
|
164
|
+
const ptr0 = passStringToWasm0(markdown_input, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
165
|
+
const len0 = WASM_VECTOR_LEN;
|
|
166
|
+
const ret = wasm.toHtml(ptr0, len0);
|
|
167
|
+
return takeObject(ret);
|
|
168
|
+
}
|
|
169
|
+
export function __wbg_Error_2e59b1b37a9a34c3(arg0, arg1) {
|
|
170
|
+
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
171
|
+
return addHeapObject(ret);
|
|
172
|
+
}
|
|
173
|
+
export function __wbg_String_8564e559799eccda(arg0, arg1) {
|
|
174
|
+
const ret = String(getObject(arg1));
|
|
175
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
176
|
+
const len1 = WASM_VECTOR_LEN;
|
|
177
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
178
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
179
|
+
}
|
|
180
|
+
export function __wbg___wbindgen_boolean_get_a86c216575a75c30(arg0) {
|
|
181
|
+
const v = getObject(arg0);
|
|
182
|
+
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
183
|
+
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
184
|
+
}
|
|
185
|
+
export function __wbg___wbindgen_debug_string_dd5d2d07ce9e6c57(arg0, arg1) {
|
|
186
|
+
const ret = debugString(getObject(arg1));
|
|
187
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
188
|
+
const len1 = WASM_VECTOR_LEN;
|
|
189
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
190
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
191
|
+
}
|
|
192
|
+
export function __wbg___wbindgen_in_4bd7a57e54337366(arg0, arg1) {
|
|
193
|
+
const ret = getObject(arg0) in getObject(arg1);
|
|
194
|
+
return ret;
|
|
195
|
+
}
|
|
196
|
+
export function __wbg___wbindgen_is_function_49868bde5eb1e745(arg0) {
|
|
197
|
+
const ret = typeof(getObject(arg0)) === 'function';
|
|
198
|
+
return ret;
|
|
199
|
+
}
|
|
200
|
+
export function __wbg___wbindgen_is_object_40c5a80572e8f9d3(arg0) {
|
|
201
|
+
const val = getObject(arg0);
|
|
202
|
+
const ret = typeof(val) === 'object' && val !== null;
|
|
203
|
+
return ret;
|
|
204
|
+
}
|
|
205
|
+
export function __wbg___wbindgen_is_string_b29b5c5a8065ba1a(arg0) {
|
|
206
|
+
const ret = typeof(getObject(arg0)) === 'string';
|
|
207
|
+
return ret;
|
|
208
|
+
}
|
|
209
|
+
export function __wbg___wbindgen_is_undefined_c0cca72b82b86f4d(arg0) {
|
|
210
|
+
const ret = getObject(arg0) === undefined;
|
|
211
|
+
return ret;
|
|
212
|
+
}
|
|
213
|
+
export function __wbg___wbindgen_jsval_loose_eq_3a72ae764d46d944(arg0, arg1) {
|
|
214
|
+
const ret = getObject(arg0) == getObject(arg1);
|
|
215
|
+
return ret;
|
|
216
|
+
}
|
|
217
|
+
export function __wbg___wbindgen_number_get_7579aab02a8a620c(arg0, arg1) {
|
|
218
|
+
const obj = getObject(arg1);
|
|
219
|
+
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
220
|
+
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
221
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
222
|
+
}
|
|
223
|
+
export function __wbg___wbindgen_string_get_914df97fcfa788f2(arg0, arg1) {
|
|
224
|
+
const obj = getObject(arg1);
|
|
225
|
+
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
226
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
227
|
+
var len1 = WASM_VECTOR_LEN;
|
|
228
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
229
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
230
|
+
}
|
|
231
|
+
export function __wbg___wbindgen_throw_81fc77679af83bc6(arg0, arg1) {
|
|
232
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
233
|
+
}
|
|
234
|
+
export function __wbg__wbg_cb_unref_3c3b4f651835fbcb(arg0) {
|
|
235
|
+
getObject(arg0)._wbg_cb_unref();
|
|
236
|
+
}
|
|
237
|
+
export function __wbg_call_d578befcc3145dee() { return handleError(function (arg0, arg1, arg2) {
|
|
238
|
+
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
|
|
239
|
+
return addHeapObject(ret);
|
|
240
|
+
}, arguments); }
|
|
241
|
+
export function __wbg_entries_616b1a459b85be0b(arg0) {
|
|
242
|
+
const ret = Object.entries(getObject(arg0));
|
|
243
|
+
return addHeapObject(ret);
|
|
244
|
+
}
|
|
245
|
+
export function __wbg_get_4848e350b40afc16(arg0, arg1) {
|
|
246
|
+
const ret = getObject(arg0)[arg1 >>> 0];
|
|
247
|
+
return addHeapObject(ret);
|
|
248
|
+
}
|
|
249
|
+
export function __wbg_get_with_ref_key_6412cf3094599694(arg0, arg1) {
|
|
250
|
+
const ret = getObject(arg0)[getObject(arg1)];
|
|
251
|
+
return addHeapObject(ret);
|
|
252
|
+
}
|
|
253
|
+
export function __wbg_instanceof_ArrayBuffer_ff7c1337a5e3b33a(arg0) {
|
|
254
|
+
let result;
|
|
255
|
+
try {
|
|
256
|
+
result = getObject(arg0) instanceof ArrayBuffer;
|
|
257
|
+
} catch (_) {
|
|
258
|
+
result = false;
|
|
259
|
+
}
|
|
260
|
+
const ret = result;
|
|
261
|
+
return ret;
|
|
262
|
+
}
|
|
263
|
+
export function __wbg_instanceof_Uint8Array_4b8da683deb25d72(arg0) {
|
|
264
|
+
let result;
|
|
265
|
+
try {
|
|
266
|
+
result = getObject(arg0) instanceof Uint8Array;
|
|
267
|
+
} catch (_) {
|
|
268
|
+
result = false;
|
|
269
|
+
}
|
|
270
|
+
const ret = result;
|
|
271
|
+
return ret;
|
|
272
|
+
}
|
|
273
|
+
export function __wbg_length_0c32cb8543c8e4c8(arg0) {
|
|
274
|
+
const ret = getObject(arg0).length;
|
|
275
|
+
return ret;
|
|
276
|
+
}
|
|
277
|
+
export function __wbg_length_6e821edde497a532(arg0) {
|
|
278
|
+
const ret = getObject(arg0).length;
|
|
279
|
+
return ret;
|
|
280
|
+
}
|
|
281
|
+
export function __wbg_new_4f9fafbb3909af72() {
|
|
282
|
+
const ret = new Object();
|
|
283
|
+
return addHeapObject(ret);
|
|
284
|
+
}
|
|
285
|
+
export function __wbg_new_a560378ea1240b14(arg0) {
|
|
286
|
+
const ret = new Uint8Array(getObject(arg0));
|
|
287
|
+
return addHeapObject(ret);
|
|
288
|
+
}
|
|
289
|
+
export function __wbg_new_f3c9df4f38f3f798() {
|
|
290
|
+
const ret = new Array();
|
|
291
|
+
return addHeapObject(ret);
|
|
292
|
+
}
|
|
293
|
+
export function __wbg_new_typed_14d7cc391ce53d2c(arg0, arg1) {
|
|
294
|
+
try {
|
|
295
|
+
var state0 = {a: arg0, b: arg1};
|
|
296
|
+
var cb0 = (arg0, arg1) => {
|
|
297
|
+
const a = state0.a;
|
|
298
|
+
state0.a = 0;
|
|
299
|
+
try {
|
|
300
|
+
return __wasm_bindgen_func_elem_985(a, state0.b, arg0, arg1);
|
|
301
|
+
} finally {
|
|
302
|
+
state0.a = a;
|
|
303
|
+
}
|
|
304
|
+
};
|
|
305
|
+
const ret = new Promise(cb0);
|
|
306
|
+
return addHeapObject(ret);
|
|
307
|
+
} finally {
|
|
308
|
+
state0.a = 0;
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
export function __wbg_prototypesetcall_3e05eb9545565046(arg0, arg1, arg2) {
|
|
312
|
+
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), getObject(arg2));
|
|
313
|
+
}
|
|
314
|
+
export function __wbg_queueMicrotask_abaf92f0bd4e80a4(arg0) {
|
|
315
|
+
const ret = getObject(arg0).queueMicrotask;
|
|
316
|
+
return addHeapObject(ret);
|
|
317
|
+
}
|
|
318
|
+
export function __wbg_queueMicrotask_df5a6dac26d818f3(arg0) {
|
|
319
|
+
queueMicrotask(getObject(arg0));
|
|
320
|
+
}
|
|
321
|
+
export function __wbg_resolve_0a79de24e9d2267b(arg0) {
|
|
322
|
+
const ret = Promise.resolve(getObject(arg0));
|
|
323
|
+
return addHeapObject(ret);
|
|
324
|
+
}
|
|
325
|
+
export function __wbg_set_6be42768c690e380(arg0, arg1, arg2) {
|
|
326
|
+
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
327
|
+
}
|
|
328
|
+
export function __wbg_set_6c60b2e8ad0e9383(arg0, arg1, arg2) {
|
|
329
|
+
getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
|
|
330
|
+
}
|
|
331
|
+
export function __wbg_static_accessor_GLOBAL_THIS_a1248013d790bf5f() {
|
|
332
|
+
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
333
|
+
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
334
|
+
}
|
|
335
|
+
export function __wbg_static_accessor_GLOBAL_f2e0f995a21329ff() {
|
|
336
|
+
const ret = typeof global === 'undefined' ? null : global;
|
|
337
|
+
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
338
|
+
}
|
|
339
|
+
export function __wbg_static_accessor_SELF_24f78b6d23f286ea() {
|
|
340
|
+
const ret = typeof self === 'undefined' ? null : self;
|
|
341
|
+
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
342
|
+
}
|
|
343
|
+
export function __wbg_static_accessor_WINDOW_59fd959c540fe405() {
|
|
344
|
+
const ret = typeof window === 'undefined' ? null : window;
|
|
345
|
+
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
346
|
+
}
|
|
347
|
+
export function __wbg_then_a0c8db0381c8994c(arg0, arg1) {
|
|
348
|
+
const ret = getObject(arg0).then(getObject(arg1));
|
|
349
|
+
return addHeapObject(ret);
|
|
350
|
+
}
|
|
351
|
+
export function __wbindgen_cast_0000000000000001(arg0, arg1) {
|
|
352
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 88, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
353
|
+
const ret = makeMutClosure(arg0, arg1, __wasm_bindgen_func_elem_689);
|
|
354
|
+
return addHeapObject(ret);
|
|
355
|
+
}
|
|
356
|
+
export function __wbindgen_cast_0000000000000002(arg0) {
|
|
357
|
+
// Cast intrinsic for `F64 -> Externref`.
|
|
358
|
+
const ret = arg0;
|
|
359
|
+
return addHeapObject(ret);
|
|
360
|
+
}
|
|
361
|
+
export function __wbindgen_cast_0000000000000003(arg0, arg1) {
|
|
362
|
+
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
363
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
364
|
+
return addHeapObject(ret);
|
|
365
|
+
}
|
|
366
|
+
export function __wbindgen_object_clone_ref(arg0) {
|
|
367
|
+
const ret = getObject(arg0);
|
|
368
|
+
return addHeapObject(ret);
|
|
369
|
+
}
|
|
370
|
+
export function __wbindgen_object_drop_ref(arg0) {
|
|
371
|
+
takeObject(arg0);
|
|
372
|
+
}
|
|
373
|
+
function __wasm_bindgen_func_elem_689(arg0, arg1, arg2) {
|
|
374
|
+
try {
|
|
375
|
+
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
376
|
+
wasm.__wasm_bindgen_func_elem_689(retptr, arg0, arg1, addHeapObject(arg2));
|
|
377
|
+
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
378
|
+
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
379
|
+
if (r1) {
|
|
380
|
+
throw takeObject(r0);
|
|
381
|
+
}
|
|
382
|
+
} finally {
|
|
383
|
+
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
function __wasm_bindgen_func_elem_985(arg0, arg1, arg2, arg3) {
|
|
388
|
+
wasm.__wasm_bindgen_func_elem_985(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
const ConversionOptionsFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
392
|
+
? { register: () => {}, unregister: () => {} }
|
|
393
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_conversionoptions_free(ptr >>> 0, 1));
|
|
394
|
+
const RunOptionsFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
395
|
+
? { register: () => {}, unregister: () => {} }
|
|
396
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_runoptions_free(ptr >>> 0, 1));
|
|
397
|
+
|
|
398
|
+
function addHeapObject(obj) {
|
|
399
|
+
if (heap_next === heap.length) heap.push(heap.length + 1);
|
|
400
|
+
const idx = heap_next;
|
|
401
|
+
heap_next = heap[idx];
|
|
402
|
+
|
|
403
|
+
heap[idx] = obj;
|
|
404
|
+
return idx;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
function _assertClass(instance, klass) {
|
|
408
|
+
if (!(instance instanceof klass)) {
|
|
409
|
+
throw new Error(`expected instance of ${klass.name}`);
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
414
|
+
? { register: () => {}, unregister: () => {} }
|
|
415
|
+
: new FinalizationRegistry(state => wasm.__wbindgen_export4(state.a, state.b));
|
|
416
|
+
|
|
417
|
+
function debugString(val) {
|
|
418
|
+
// primitive types
|
|
419
|
+
const type = typeof val;
|
|
420
|
+
if (type == 'number' || type == 'boolean' || val == null) {
|
|
421
|
+
return `${val}`;
|
|
422
|
+
}
|
|
423
|
+
if (type == 'string') {
|
|
424
|
+
return `"${val}"`;
|
|
425
|
+
}
|
|
426
|
+
if (type == 'symbol') {
|
|
427
|
+
const description = val.description;
|
|
428
|
+
if (description == null) {
|
|
429
|
+
return 'Symbol';
|
|
430
|
+
} else {
|
|
431
|
+
return `Symbol(${description})`;
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
if (type == 'function') {
|
|
435
|
+
const name = val.name;
|
|
436
|
+
if (typeof name == 'string' && name.length > 0) {
|
|
437
|
+
return `Function(${name})`;
|
|
438
|
+
} else {
|
|
439
|
+
return 'Function';
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
// objects
|
|
443
|
+
if (Array.isArray(val)) {
|
|
444
|
+
const length = val.length;
|
|
445
|
+
let debug = '[';
|
|
446
|
+
if (length > 0) {
|
|
447
|
+
debug += debugString(val[0]);
|
|
448
|
+
}
|
|
449
|
+
for(let i = 1; i < length; i++) {
|
|
450
|
+
debug += ', ' + debugString(val[i]);
|
|
451
|
+
}
|
|
452
|
+
debug += ']';
|
|
453
|
+
return debug;
|
|
454
|
+
}
|
|
455
|
+
// Test for built-in
|
|
456
|
+
const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
|
|
457
|
+
let className;
|
|
458
|
+
if (builtInMatches && builtInMatches.length > 1) {
|
|
459
|
+
className = builtInMatches[1];
|
|
460
|
+
} else {
|
|
461
|
+
// Failed to match the standard '[object ClassName]'
|
|
462
|
+
return toString.call(val);
|
|
463
|
+
}
|
|
464
|
+
if (className == 'Object') {
|
|
465
|
+
// we're a user defined class or Object
|
|
466
|
+
// JSON.stringify avoids problems with cycles, and is generally much
|
|
467
|
+
// easier than looping through ownProperties of `val`.
|
|
468
|
+
try {
|
|
469
|
+
return 'Object(' + JSON.stringify(val) + ')';
|
|
470
|
+
} catch (_) {
|
|
471
|
+
return 'Object';
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
// errors
|
|
475
|
+
if (val instanceof Error) {
|
|
476
|
+
return `${val.name}: ${val.message}\n${val.stack}`;
|
|
477
|
+
}
|
|
478
|
+
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
479
|
+
return className;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
function dropObject(idx) {
|
|
483
|
+
if (idx < 1028) return;
|
|
484
|
+
heap[idx] = heap_next;
|
|
485
|
+
heap_next = idx;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
function getArrayU8FromWasm0(ptr, len) {
|
|
489
|
+
ptr = ptr >>> 0;
|
|
490
|
+
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
let cachedDataViewMemory0 = null;
|
|
494
|
+
function getDataViewMemory0() {
|
|
495
|
+
if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
|
|
496
|
+
cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
|
|
497
|
+
}
|
|
498
|
+
return cachedDataViewMemory0;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
function getStringFromWasm0(ptr, len) {
|
|
502
|
+
ptr = ptr >>> 0;
|
|
503
|
+
return decodeText(ptr, len);
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
let cachedUint8ArrayMemory0 = null;
|
|
507
|
+
function getUint8ArrayMemory0() {
|
|
508
|
+
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
|
|
509
|
+
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
|
|
510
|
+
}
|
|
511
|
+
return cachedUint8ArrayMemory0;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
function getObject(idx) { return heap[idx]; }
|
|
515
|
+
|
|
516
|
+
function handleError(f, args) {
|
|
517
|
+
try {
|
|
518
|
+
return f.apply(this, args);
|
|
519
|
+
} catch (e) {
|
|
520
|
+
wasm.__wbindgen_export3(addHeapObject(e));
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
let heap = new Array(1024).fill(undefined);
|
|
525
|
+
heap.push(undefined, null, true, false);
|
|
526
|
+
|
|
527
|
+
let heap_next = heap.length;
|
|
528
|
+
|
|
529
|
+
function isLikeNone(x) {
|
|
530
|
+
return x === undefined || x === null;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
function makeMutClosure(arg0, arg1, f) {
|
|
534
|
+
const state = { a: arg0, b: arg1, cnt: 1 };
|
|
535
|
+
const real = (...args) => {
|
|
536
|
+
|
|
537
|
+
// First up with a closure we increment the internal reference
|
|
538
|
+
// count. This ensures that the Rust closure environment won't
|
|
539
|
+
// be deallocated while we're invoking it.
|
|
540
|
+
state.cnt++;
|
|
541
|
+
const a = state.a;
|
|
542
|
+
state.a = 0;
|
|
543
|
+
try {
|
|
544
|
+
return f(a, state.b, ...args);
|
|
545
|
+
} finally {
|
|
546
|
+
state.a = a;
|
|
547
|
+
real._wbg_cb_unref();
|
|
548
|
+
}
|
|
549
|
+
};
|
|
550
|
+
real._wbg_cb_unref = () => {
|
|
551
|
+
if (--state.cnt === 0) {
|
|
552
|
+
wasm.__wbindgen_export4(state.a, state.b);
|
|
553
|
+
state.a = 0;
|
|
554
|
+
CLOSURE_DTORS.unregister(state);
|
|
555
|
+
}
|
|
556
|
+
};
|
|
557
|
+
CLOSURE_DTORS.register(real, state, state);
|
|
558
|
+
return real;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
function passStringToWasm0(arg, malloc, realloc) {
|
|
562
|
+
if (realloc === undefined) {
|
|
563
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
564
|
+
const ptr = malloc(buf.length, 1) >>> 0;
|
|
565
|
+
getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
|
|
566
|
+
WASM_VECTOR_LEN = buf.length;
|
|
567
|
+
return ptr;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
let len = arg.length;
|
|
571
|
+
let ptr = malloc(len, 1) >>> 0;
|
|
572
|
+
|
|
573
|
+
const mem = getUint8ArrayMemory0();
|
|
574
|
+
|
|
575
|
+
let offset = 0;
|
|
576
|
+
|
|
577
|
+
for (; offset < len; offset++) {
|
|
578
|
+
const code = arg.charCodeAt(offset);
|
|
579
|
+
if (code > 0x7F) break;
|
|
580
|
+
mem[ptr + offset] = code;
|
|
581
|
+
}
|
|
582
|
+
if (offset !== len) {
|
|
583
|
+
if (offset !== 0) {
|
|
584
|
+
arg = arg.slice(offset);
|
|
585
|
+
}
|
|
586
|
+
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
|
|
587
|
+
const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
|
|
588
|
+
const ret = cachedTextEncoder.encodeInto(arg, view);
|
|
589
|
+
|
|
590
|
+
offset += ret.written;
|
|
591
|
+
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
WASM_VECTOR_LEN = offset;
|
|
595
|
+
return ptr;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
function takeObject(idx) {
|
|
599
|
+
const ret = getObject(idx);
|
|
600
|
+
dropObject(idx);
|
|
601
|
+
return ret;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
605
|
+
cachedTextDecoder.decode();
|
|
606
|
+
const MAX_SAFARI_DECODE_BYTES = 2146435072;
|
|
607
|
+
let numBytesDecoded = 0;
|
|
608
|
+
function decodeText(ptr, len) {
|
|
609
|
+
numBytesDecoded += len;
|
|
610
|
+
if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
|
|
611
|
+
cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
612
|
+
cachedTextDecoder.decode();
|
|
613
|
+
numBytesDecoded = len;
|
|
614
|
+
}
|
|
615
|
+
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
const cachedTextEncoder = new TextEncoder();
|
|
619
|
+
|
|
620
|
+
if (!('encodeInto' in cachedTextEncoder)) {
|
|
621
|
+
cachedTextEncoder.encodeInto = function (arg, view) {
|
|
622
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
623
|
+
view.set(buf);
|
|
624
|
+
return {
|
|
625
|
+
read: arg.length,
|
|
626
|
+
written: buf.length
|
|
627
|
+
};
|
|
628
|
+
};
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
let WASM_VECTOR_LEN = 0;
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
let wasm;
|
|
635
|
+
export function __wbg_set_wasm(val) {
|
|
636
|
+
wasm = val;
|
|
637
|
+
}
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mq-nodejs",
|
|
3
|
+
"description": "A jq-like command-line tool for Markdown processing for Node.js",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"author": "harehare",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://github.com/harehare/mq/issues"
|
|
9
|
+
},
|
|
10
|
+
"devDependencies": {
|
|
11
|
+
"@types/node": "^25.6.0",
|
|
12
|
+
"oxlint": "^1.31.0",
|
|
13
|
+
"tsup": "^8.5.1",
|
|
14
|
+
"typescript": "^6.0.2",
|
|
15
|
+
"vitest": "^3.0.0"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"homepage": "https://mqlang.org",
|
|
21
|
+
"keywords": [
|
|
22
|
+
"filter",
|
|
23
|
+
"jq",
|
|
24
|
+
"markdown",
|
|
25
|
+
"transform",
|
|
26
|
+
"wasm",
|
|
27
|
+
"webassembly",
|
|
28
|
+
"nodejs"
|
|
29
|
+
],
|
|
30
|
+
"main": "dist/index.js",
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git+https://github.com/harehare/mq.git",
|
|
34
|
+
"directory": "packages/mq-nodejs"
|
|
35
|
+
},
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "tsup && rm dist/.gitignore",
|
|
41
|
+
"dev": "tsup --watch",
|
|
42
|
+
"type-check": "tsc --noEmit",
|
|
43
|
+
"lint": "oxlint .",
|
|
44
|
+
"test": "vitest run"
|
|
45
|
+
},
|
|
46
|
+
"packageManager": "pnpm@10.33.0",
|
|
47
|
+
"pnpm": {
|
|
48
|
+
"onlyBuiltDependencies": [
|
|
49
|
+
"esbuild"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"sideEffects": false,
|
|
53
|
+
"types": "dist/index.d.ts"
|
|
54
|
+
}
|