X7ROOT File Manager
Current Path:
/usr/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode
usr
/
lib
/
node_modules
/
npm
/
node_modules
/
qrcode-terminal
/
vendor
/
QRCode
/
ðŸ“
..
📄
QR8bitByte.js
(382 B)
📄
QRBitBuffer.js
(702 B)
📄
QRErrorCorrectLevel.js
(54 B)
📄
QRMaskPattern.js
(157 B)
📄
QRMath.js
(673 B)
📄
QRMode.js
(149 B)
📄
QRPolynomial.js
(1.3 KB)
📄
QRRSBlock.js
(5.43 KB)
📄
QRUtil.js
(8.03 KB)
📄
index.js
(10.42 KB)
Editing: QR8bitByte.js
var QRMode = require('./QRMode'); function QR8bitByte(data) { this.mode = QRMode.MODE_8BIT_BYTE; this.data = data; } QR8bitByte.prototype = { getLength : function() { return this.data.length; }, write : function(buffer) { for (var i = 0; i < this.data.length; i++) { // not JIS ... buffer.put(this.data.charCodeAt(i), 8); } } }; module.exports = QR8bitByte;
Upload File
Create Folder