terminal.js 271 B

123456789
  1. const big = require('./terminal/terminal')
  2. const small = require('./terminal/terminal-small')
  3. exports.render = function (qrData, options, cb) {
  4. if (options && options.small) {
  5. return small.render(qrData, options, cb)
  6. }
  7. return big.render(qrData, options, cb)
  8. }