first commit
This commit is contained in:
19
build/node_modules/tar/examples/extracter.js
generated
vendored
Normal file
19
build/node_modules/tar/examples/extracter.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
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);
|
||||
Reference in New Issue
Block a user