base64-image-utils
Advanced tools
Comparing version 1.1.1 to 1.1.2
# CHANGELOG | ||
# 1.1.2 | ||
- Bugfix | ||
# 1.1.1 | ||
@@ -4,0 +7,0 @@ - Removes the usage of spread syntax on arrays. |
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7371