You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
385 B
19 lines
385 B
var tar = require("../tar.js") |
|
, fs = require("fs") |
|
|
|
|
|
function onError(err) { |
|
console.error('An error occurred:', err) |
|
} |
|
|
|
function onEnd() { |
|
console.log('Extracted!') |
|
} |
|
|
|
var extractor = tar.Extract({path: __dirname + "/extract"}) |
|
.on('error', onError) |
|
.on('end', onEnd); |
|
|
|
fs.createReadStream(__dirname + "/../test/fixtures/c.tar") |
|
.on('error', onError) |
|
.pipe(extractor);
|
|
|