로그인 전까지 기능

This commit is contained in:
dsyoon
2026-01-27 11:23:17 +09:00
commit 4b10aef1b0
1187 changed files with 601089 additions and 0 deletions

33
server/node_modules/postgres-bytea/index.js generated vendored Normal file
View File

@@ -0,0 +1,33 @@
'use strict'
var bufferFrom = Buffer.from || Buffer
module.exports = function parseBytea (input) {
if (/^\\x/.test(input)) {
// new 'hex' style response (pg >9.0)
return bufferFrom(input.substr(2), 'hex')
}
var output = ''
var i = 0
while (i < input.length) {
if (input[i] !== '\\') {
output += input[i]
++i
} else {
if (/[0-7]{3}/.test(input.substr(i + 1, 3))) {
output += String.fromCharCode(parseInt(input.substr(i + 1, 3), 8))
i += 4
} else {
var backslashes = 1
while (i + backslashes < input.length && input[i + backslashes] === '\\') {
backslashes++
}
for (var k = 0; k < Math.floor(backslashes / 2); ++k) {
output += '\\'
}
i += Math.floor(backslashes / 2) * 2
}
}
}
return bufferFrom(output, 'binary')
}