REDROOM
PHP 8.2.30
Path:
Logout
Edit File
Size: 1.19 KB
Close
//proc/thread-self/root/home/byroehnu/.trash/node_modules11/qrcode/lib/renderer/terminal/terminal.js
Text
Base64
// let Utils = require('./utils') exports.render = function (qrData, options, cb) { const size = qrData.modules.size const data = qrData.modules.data // let opts = Utils.getOptions(options) // use same scheme as https://github.com/gtanner/qrcode-terminal because it actually works! =) const black = '\x1b[40m \x1b[0m' const white = '\x1b[47m \x1b[0m' let output = '' const hMargin = Array(size + 3).join(white) const vMargin = Array(2).join(white) output += hMargin + '\n' for (let i = 0; i < size; ++i) { output += white for (let j = 0; j < size; j++) { // let topModule = data[i * size + j] // let bottomModule = data[(i + 1) * size + j] output += data[i * size + j] ? black : white// getBlockChar(topModule, bottomModule) } // output += white+'\n' output += vMargin + '\n' } output += hMargin + '\n' if (typeof cb === 'function') { cb(null, output) } return output } /* exports.renderToFile = function renderToFile (path, qrData, options, cb) { if (typeof cb === 'undefined') { cb = options options = undefined } let fs = require('fs') let utf8 = exports.render(qrData, options) fs.writeFile(path, utf8, cb) } */
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 2
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
terminal-small.js
2.34 KB
lrw-r--r--
2026-02-27 09:45:02
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
terminal.js
1.19 KB
lrw-r--r--
2026-02-27 09:45:04
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).