Preview: version-check.js
Size: 268 B
//proc/thread-self/root/home/byroehnu/.trash/node_modules11/qrcode/lib/core/version-check.js
/**
* Check if QR Code version is valid
*
* @param {Number} version QR Code version
* @return {Boolean} true if valid version, false otherwise
*/
exports.isValid = function isValid (version) {
return !isNaN(version) && version >= 1 && version <= 40
}
Directory Contents
Dirs: 0 × Files: 22