lix-website/themes/lix/assets/bootstrap/node_modules/unzipper/lib/Buffer.js
2024-04-26 22:49:34 -06:00

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;