/var/www/greso.tech/server/nsm/node_modules/qrcode-svg/examples
NameSizeModeActions
output/-0755rm
ascii.js3480644editdlrm
ascii.txt6760644editdlrm
convert.js5990644editdlrm
index.html2870644editdlrm
samples.js7310644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/qrcode-svg/examples/ascii.js (348B)
var QRCode = require('../lib/qrcode.js'); var hello = new QRCode("Hello World!"); var modules = hello.qrcode.modules; var ascii = ''; var length = modules.length; for (var y = 0; y < length; y++) { for (var x = 0; x < length; x++) { var module = modules[x][y]; ascii += (module ? 'x' : ' '); } ascii += '\r\n'; } console.log(ascii);