Skip to content

Commit

Permalink
Update lib/index.js
Browse files Browse the repository at this point in the history
Co-authored-by: Neal Beeken <[email protected]>
  • Loading branch information
baileympearson and nbbeeken authored Nov 26, 2024
1 parent a6adf37 commit a75d921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const { resolve } = require('path');
const { promisify } = require('util');
const { isUint8Array } = require('util/types');

const zstd = require(resolve(__dirname, '../build/Release/zstd.node'));
const zstd = require('../build/Release/zstd.node');

const _compress = promisify(zstd.compress);
const _decompress = promisify(zstd.decompress);
Expand Down

0 comments on commit a75d921

Please sign in to comment.