mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-30 03:06:48 +00:00
Avoid deprecated new Buffer() usage
See https://alexatnet.com/node-js-10-important-changes/#buffer-1 > Uses of new Buffer() and Buffer() outside of the node_modules directory will now emit a runtime deprecation warning. More details: https://nodejs.org/api/buffer.html#buffer_buffer_from_buffer_alloc_and_buffer_allocunsafe
This commit is contained in:
@@ -57,7 +57,7 @@ var FILE_BUFFER_LENGTH = 64 * 1024,
|
||||
exports.copyFile = function(srcPath,dstPath) {
|
||||
// Create buffer if required
|
||||
if(!fileBuffer) {
|
||||
fileBuffer = new Buffer(FILE_BUFFER_LENGTH);
|
||||
fileBuffer = Buffer.alloc(FILE_BUFFER_LENGTH);
|
||||
}
|
||||
// Create any directories in the destination
|
||||
$tw.utils.createDirectory(path.dirname(dstPath));
|
||||
|
||||
Reference in New Issue
Block a user