mirror of
https://github.com/electron/node-gyp.git
synced 2025-09-19 07:13:40 +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
14
node_modules/tar/lib/global-header-writer.js
generated
vendored
Normal file
14
node_modules/tar/lib/global-header-writer.js
generated
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
module.exports = GlobalHeaderWriter
|
||||
|
||||
var ExtendedHeaderWriter = require("./extended-header-writer.js")
|
||||
, inherits = require("inherits")
|
||||
|
||||
inherits(GlobalHeaderWriter, ExtendedHeaderWriter)
|
||||
|
||||
function GlobalHeaderWriter (props) {
|
||||
if (!(this instanceof GlobalHeaderWriter)) {
|
||||
return new GlobalHeaderWriter(props)
|
||||
}
|
||||
ExtendedHeaderWriter.call(this, props)
|
||||
this.props.type = "g"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue