Files
JavaTools/package/node_modules/qrcode-terminal/example/small-qrcode.js

7 lines
150 B
JavaScript
Raw Normal View History

2025-08-18 23:06:34 +08:00
var qrcode = require('../lib/main'),
url = 'https://google.com/';
qrcode.generate(url, { small: true }, function (qr) {
console.log(qr);
});