mirror of
https://github.com/gradle/actions.git
synced 2025-12-08 17:15:46 +08:00
publishing v1 of action
This commit is contained in:
12
node_modules/unzipper/lib/Buffer.js
generated
vendored
Normal file
12
node_modules/unzipper/lib/Buffer.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
var Buffer = require('buffer').Buffer;
|
||||
|
||||
// Backwards compatibility for node versions < 8
|
||||
if (Buffer.from === undefined) {
|
||||
Buffer.from = function (a, b, c) {
|
||||
return new Buffer(a, b, c)
|
||||
};
|
||||
|
||||
Buffer.alloc = Buffer.from;
|
||||
}
|
||||
|
||||
module.exports = Buffer;
|
||||
Reference in New Issue
Block a user