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

skinview-utils

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

skinview-utils - npm Package Compare versions

Comparing version 0.5.5 to 0.5.6

5

build/load-image.js

@@ -6,2 +6,3 @@ export async function loadImage(source) {

image.onerror = reject;
image.crossOrigin = "anonymous";
if (typeof source === "string") {

@@ -11,3 +12,5 @@ image.src = source;

else {
image.crossOrigin = source.crossOrigin === undefined ? "anonymous" : source.crossOrigin;
if (source.crossOrigin !== undefined) {
image.crossOrigin = source.crossOrigin;
}
if (source.referrerPolicy !== undefined) {

@@ -14,0 +17,0 @@ image.referrerPolicy = source.referrerPolicy;

2

package.json
{
"name": "skinview-utils",
"version": "0.5.5",
"version": "0.5.6",
"description": "Utilities for working with Minecraft skins",

@@ -5,0 +5,0 @@ "type": "module",

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