Files
projet_gestion_commande/frontend-admin/node_modules/qrcode-terminal/example/small-qrcode.js
T
2026-02-07 22:33:02 +01:00

7 lines
150 B
JavaScript

var qrcode = require('../lib/main'),
url = 'https://google.com/';
qrcode.generate(url, { small: true }, function (qr) {
console.log(qr);
});