mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-23 17:42:10 +00:00
12 lines
253 B
JavaScript
12 lines
253 B
JavaScript
|
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;
|