-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
33 lines (25 loc) · 914 Bytes
/
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
const fs = require('node:fs/promises');
const path = require('node:path');
const { gunzip } = require('node:zlib');
const { promisify } = require('node:util');
const do_gunzip = promisify(gunzip);
function relativePath(dir) {
return path.join(__dirname, dir);
}
async function initHLC4JS() {
if (!global.env0_hcl4js) {
require(relativePath('wasm_exec.js'));
const go = new global.Go();
const gz = await fs.readFile(relativePath('main.wasm.gz'));
const bytes = await do_gunzip(gz);
const wasm = await WebAssembly.instantiate(bytes, go.importObject);
// noinspection ES6MissingAwait - go main function doesn't exit
go.run(wasm.instance);
}
return global.env0_hcl4js;
}
async function parse(filename, content) {
const hcljs = await initHLC4JS();
return JSON.parse(await hcljs.parse(filename, content));
}
module.exports = {parse}