qrcode-generator-ts
Version:
Typescript QR Code generator based on https://github.com/kazuhikoarase/qrcode-generator
18 lines • 492 B
JavaScript
;
var OutputStream = (function () {
function OutputStream() {
}
OutputStream.prototype.writeBytes = function (bytes) {
for (var i = 0; i < bytes.length; i += 1) {
this.writeByte(bytes[i]);
}
};
OutputStream.prototype.flush = function () {
};
OutputStream.prototype.close = function () {
this.flush();
};
return OutputStream;
}());
exports.OutputStream = OutputStream;
//# sourceMappingURL=OutputStream.js.map