9 lines
157 B
JavaScript
9 lines
157 B
JavaScript
const QRCode = require('../lib')
|
|
|
|
QRCode.toString('yo yo yo', function (error, data) {
|
|
if (error) {
|
|
throw new Error(error)
|
|
}
|
|
|
|
console.log(data)
|
|
})
|