Huge News!Announcing our $40M Series B led by Abstract Ventures.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.4 to 0.5.5

1

build/load-image.d.ts
export declare type RemoteImage = string | {
src: string;
/** @defaultvalue "anonymous" */
crossOrigin?: string | null;

@@ -4,0 +5,0 @@ referrerPolicy?: string;

4

build/load-image.js

@@ -10,5 +10,3 @@ export async function loadImage(source) {

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

@@ -15,0 +13,0 @@ image.referrerPolicy = source.referrerPolicy;

{
"name": "skinview-utils",
"version": "0.5.4",
"version": "0.5.5",
"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