Socket
Socket
Sign inDemoInstall

@wasm-audio-decoders/common

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wasm-audio-decoders/common - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

2

package.json
{
"name": "@wasm-audio-decoders/common",
"version": "2.0.0",
"version": "2.0.1",
"description": "Web Assembly Audio Decoders Common",

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

@@ -128,3 +128,3 @@ export default class WASMAudioDecoderCommon {

let continued = false,
let escaped = false,
byteIndex = 0,

@@ -136,11 +136,9 @@ byte;

if (byte === 13 || byte === 10) continue;
if (byte === 61 && !continued) {
continued = true;
if (byte === 61 && !escaped) {
escaped = true;
continue;
}
if (continued) {
continued = false;
if (escaped) {
escaped = false;
byte -= 64;

@@ -147,0 +145,0 @@ }

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