Skip to content

Commit

Permalink
[Deps] switch through to @ljharb/through
Browse files Browse the repository at this point in the history
Closes regular#39
  • Loading branch information
ljharb committed Dec 22, 2023
1 parent c58c6f0 commit ebfb648
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var through = require('through');
var through = require('@ljharb/through');
var bz2 = require('./lib/bzip2');
var bitIterator = require('./lib/bit_iterator');

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
},
"dependencies": {
"buffer": "^5.2.1",
"through": "^2.3.8"
"@ljharb/through": "^2.3.8"
},
"license": "MIT"
}
2 changes: 1 addition & 1 deletion test/browser/download.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var http = require('http');
var unbzip2Stream = require('../../');
var through = require('through');
var through = require('@ljharb/through');
var concat = require('concat-stream');
var test = require('tape');

Expand Down
2 changes: 1 addition & 1 deletion test/browser/long.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var http = require('http');
var unbzip2Stream = require('../../');
var through = require('through');
var through = require('@ljharb/through');
var concat = require('concat-stream');
var test = require('tape');
var fs = require('fs');
Expand Down

0 comments on commit ebfb648

Please sign in to comment.