mirror of
https://github.com/electron/node-gyp.git
synced 2025-09-15 21:53:38 +02:00
Commit node_modules.
For @billywhizz :) And cause it's just an all around good idea for command-line apps.
This commit is contained in:
parent
d39620999f
commit
24bde139e1
255 changed files with 20261 additions and 0 deletions
36
node_modules/tar/examples/reader.js
generated
vendored
Normal file
36
node_modules/tar/examples/reader.js
generated
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
var tar = require("../tar.js")
|
||||
, fs = require("fs")
|
||||
|
||||
fs.createReadStream(__dirname + "/../test/fixtures/c.tar")
|
||||
.pipe(tar.Reader())
|
||||
.on("extendedHeader", function (e) {
|
||||
console.error("extended pax header", e.props)
|
||||
e.on("end", function () {
|
||||
console.error("extended pax fields:", e.fields)
|
||||
})
|
||||
})
|
||||
.on("ignoredEntry", function (e) {
|
||||
console.error("ignoredEntry?!?", e.props)
|
||||
})
|
||||
.on("longLinkpath", function (e) {
|
||||
console.error("longLinkpath entry", e.props)
|
||||
e.on("end", function () {
|
||||
console.error("value=%j", e.body.toString())
|
||||
})
|
||||
})
|
||||
.on("longPath", function (e) {
|
||||
console.error("longPath entry", e.props)
|
||||
e.on("end", function () {
|
||||
console.error("value=%j", e.body.toString())
|
||||
})
|
||||
})
|
||||
.on("entry", function (e) {
|
||||
console.error("entry", e.props)
|
||||
e.on("data", function (c) {
|
||||
console.error(" >>>" + c.toString().replace(/\n/g, "\\n"))
|
||||
})
|
||||
e.on("end", function () {
|
||||
console.error(" <<<EOF")
|
||||
})
|
||||
})
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue