minimal-qr-code
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -7,4 +7,6 @@ import { QRCode } from './QRCode'; | ||
qr.make(); | ||
return { size: qr.getModuleCount(), isDark: qr.isDark }; | ||
const size = qr.getModuleCount(); | ||
const isDark = (row, col) => qr.isDark(row, col); | ||
return { size, isDark }; | ||
} | ||
export { QRErrorCorrectLevel }; |
{ | ||
"name": "minimal-qr-code", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Simple QR code generator library.", | ||
@@ -5,0 +5,0 @@ "author": "Jaedson Barbosa Serafim", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
36360
1081