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

musicmetadata

Package Overview
Dependencies
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

musicmetadata - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

2

lib/common.js

@@ -53,3 +53,3 @@ 'use strict'

var picDataLen = strtok.UINT32_BE.get(buffer, offset += 4)
picture.data = buffer.slice(offset += 4, offset + picDataLen)
picture.data = new Buffer(buffer.slice(offset += 4, offset + picDataLen))

@@ -56,0 +56,0 @@ return picture

@@ -125,3 +125,3 @@ 'use strict'

format: 'image/' + type,
data: data.slice(4)
data: new Buffer(data.slice(4))
}

@@ -128,0 +128,0 @@ }

@@ -58,3 +58,3 @@ 'use strict'

description: description,
data: picData.slice(off)
data: new Buffer(picData.slice(off))
}

@@ -61,0 +61,0 @@

{
"name": "musicmetadata",
"description": "Streaming music metadata parser for node and the browser.",
"version": "2.0.1",
"version": "2.0.2",
"author": "Lee Treveil",

@@ -6,0 +6,0 @@ "dependencies": {

Sorry, the diff of this file is too big to display

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