Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

base64-image-utils

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

base64-image-utils - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

3

CHANGELOG.md
# CHANGELOG
# 1.1.2
- Bugfix
# 1.1.1

@@ -4,0 +7,0 @@ - Removes the usage of spread syntax on arrays.

6

lib/base64ImageToRGBMatrix.js

@@ -31,5 +31,5 @@ const { createWorker } = require("./utils");

self.onmessage = function onWorkerJobStarted(message) {
const data = message.data.data;
const width = message.data.width;
const height = message.data.height;
const data = message.data[0];
const width = message.data[1];
const height = message.data[2];

@@ -36,0 +36,0 @@ let result = [];

{
"name": "base64-image-utils",
"version": "1.1.1",
"version": "1.1.2",
"description": "Utils for base64 image data.",

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

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