Socket
Socket
Sign inDemoInstall

qrjs

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.0 to 0.1.1

2

package.json
{
"name": "qrjs",
"version": "0.1.0",
"version": "0.1.1",
"description": "QR code generator in Javascript",

@@ -5,0 +5,0 @@ "main": "qr.js",

@@ -716,3 +716,3 @@ /* qr.js -- QR code generator in Javascript (revision 2011-01-19)

var modsize = Math.max(options.modulesize || 5, 0.5);
var margin = Math.max(options.margin || 4, 0.0);
var margin = Math.max(options.margin !== null ? options.margin : 4, 0.0);

@@ -740,3 +740,3 @@ var e = document.createElement('div');

var modsize = Math.max(options.modulesize || 5, 0.5);
var margin = Math.max(options.margin || 4, 0.0);
var margin = Math.max(options.margin !== null ? options.margin : 4, 0.0);
var n = matrix.length;

@@ -743,0 +743,0 @@ var size = modsize * (n + 2 * margin);

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc