upd. deps (5.7 MB)

This commit is contained in:
Smith
2022-07-21 10:36:57 +02:00
parent b2ace6f5e3
commit e7a397abc0
106 changed files with 2234 additions and 2424 deletions

2
node_modules/json-buffer/index.js generated vendored
View File

@@ -49,7 +49,7 @@ exports.parse = function (s) {
return JSON.parse(s, function (key, value) {
if('string' === typeof value) {
if(/^:base64:/.test(value))
return new Buffer(value.substring(8), 'base64')
return Buffer.from(value.substring(8), 'base64')
else
return /^:/.test(value) ? value.substring(1) : value
}