wux-weapp
Version:
一套组件化、可复用、易扩展的微信小程序 UI 组件库
24 lines (17 loc) • 383 B
JavaScript
var mode = require('./mode');
function QR8bitByte(data) {
this.mode = mode.MODE_8BIT_BYTE;
this.data = data;
}
QR8bitByte.prototype = {
getLength : function(buffer) {
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;