REDROOM
PHP 8.2.30
Path:
Logout
Edit File
Size: 863 B
Close
/home/byroehnu/.trash/node_modules11/postgres-bytea/index.js
Text
Base64
'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') }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 4
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
index.js
863 B
lrw-r--r--
2026-02-03 15:06:12
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
license
1.08 KB
lrw-r--r--
2026-02-03 15:06:12
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
package.json
617 B
lrw-r--r--
2026-02-03 15:06:12
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
readme.md
504 B
lrw-r--r--
2026-02-03 15:06:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).