New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pure-canvas

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pure-canvas - npm Package Compare versions

Comparing version 0.6.14 to 0.6.15

7

lib/LayerCached.js

@@ -86,3 +86,8 @@ "use strict";

if (context) {
context.drawImage(cache, minX, minY, width, height);
try {
context.drawImage(cache, minX, minY, width, height);
}
catch (error) {
// Ignore
}
}

@@ -89,0 +94,0 @@ else {

2

package.json
{
"name": "pure-canvas",
"version": "0.6.14",
"version": "0.6.15",
"description": "TODO",

@@ -5,0 +5,0 @@ "main": "lib/Stage.js",

@@ -99,3 +99,7 @@ import Node, { Point, Bounds } from './Node';

if (context) {
context.drawImage(cache, minX, minY, width, height);
try {
context.drawImage(cache, minX, minY, width, height);
} catch (error) {
// Ignore
}
} else {

@@ -102,0 +106,0 @@ if (!next) {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc