🔧 Don’t use deprecated new Buffer()
This commit is contained in:
parent
19df1cf070
commit
451a44c4b5
1 changed files with 5 additions and 5 deletions
|
@ -482,7 +482,7 @@
|
||||||
}
|
}
|
||||||
if (info.size === 0) {
|
if (info.size === 0) {
|
||||||
return process.nextTick(function () {
|
return process.nextTick(function () {
|
||||||
callback(null, encoding ? '' : new Buffer(0))
|
callback(null, encoding ? '' : Buffer.alloc(0))
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if (info.unpacked) {
|
if (info.unpacked) {
|
||||||
|
@ -490,7 +490,7 @@
|
||||||
return fs.readFile(realPath, options, callback)
|
return fs.readFile(realPath, options, callback)
|
||||||
}
|
}
|
||||||
|
|
||||||
const buffer = new Buffer(info.size)
|
const buffer = Buffer.alloc(info.size)
|
||||||
const fd = archive.getFd()
|
const fd = archive.getFd()
|
||||||
if (!(fd >= 0)) {
|
if (!(fd >= 0)) {
|
||||||
return notFoundError(asarPath, filePath, callback)
|
return notFoundError(asarPath, filePath, callback)
|
||||||
|
@ -519,7 +519,7 @@
|
||||||
if (options) {
|
if (options) {
|
||||||
return ''
|
return ''
|
||||||
} else {
|
} else {
|
||||||
return new Buffer(0)
|
return Buffer.alloc(0)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (info.unpacked) {
|
if (info.unpacked) {
|
||||||
|
@ -538,7 +538,7 @@
|
||||||
throw new TypeError('Bad arguments')
|
throw new TypeError('Bad arguments')
|
||||||
}
|
}
|
||||||
const {encoding} = options
|
const {encoding} = options
|
||||||
const buffer = new Buffer(info.size)
|
const buffer = Buffer.alloc(info.size)
|
||||||
const fd = archive.getFd()
|
const fd = archive.getFd()
|
||||||
if (!(fd >= 0)) {
|
if (!(fd >= 0)) {
|
||||||
notFoundError(asarPath, filePath)
|
notFoundError(asarPath, filePath)
|
||||||
|
@ -611,7 +611,7 @@
|
||||||
encoding: 'utf8'
|
encoding: 'utf8'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
const buffer = new Buffer(info.size)
|
const buffer = Buffer.alloc(info.size)
|
||||||
const fd = archive.getFd()
|
const fd = archive.getFd()
|
||||||
if (!(fd >= 0)) {
|
if (!(fd >= 0)) {
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue