publishing v1 of action

This commit is contained in:
Paul Merlin
2019-09-21 16:11:55 +02:00
parent 91baa89272
commit 2d5ca45eab
569 changed files with 61688 additions and 2 deletions

19
node_modules/unzipper/lib/NoopStream.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
var Stream = require('stream');
var util = require('util');
// Backwards compatibility for node versions < 8
if (!Stream.Writable || !Stream.Writable.prototype.destroy)
Stream = require('readable-stream');
function NoopStream() {
if (!(this instanceof NoopStream)) {
return new NoopStream();
}
Stream.Transform.call(this);
}
util.inherits(NoopStream,Stream.Transform);
NoopStream.prototype._transform = function(d,e,cb) { cb() ;};
module.exports = NoopStream;