Skip to content

Commit 9ab18bb

Browse files
committed
chore: prettier
1 parent 6ec1e90 commit 9ab18bb

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tools/spectral/ipa/metrics/scripts/parquet-wasm-wrapper.cjs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@ const fs = require('fs');
1717

1818
// Read and eval the parquet-wasm node build
1919
// We use eval because require() won't work due to the "type": "module" in package.json
20-
const parquetWasmPath = path.resolve(
21-
__dirname,
22-
'../../../../../node_modules/parquet-wasm/node/parquet_wasm.js',
23-
);
20+
const parquetWasmPath = path.resolve(__dirname, '../../../../../node_modules/parquet-wasm/node/parquet_wasm.js');
2421

2522
const code = fs.readFileSync(parquetWasmPath, 'utf8');
2623
const moduleExports = {};
@@ -32,4 +29,3 @@ fn(moduleExports, require, moduleObj, parquetWasmPath, path.dirname(parquetWasmP
3229

3330
// Re-export everything
3431
module.exports = moduleObj.exports;
35-

0 commit comments

Comments
 (0)