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 0.6.2 to 0.6.3

11

lib/id3v2.js

@@ -7,2 +7,3 @@ 'use strict';

var equal = require('deep-equal');
var sum = require('sum-component');

@@ -219,3 +220,3 @@ module.exports = function (stream, callback, done, readDuration, fileSize) {

if (frameHeader.id === '' || frameHeader.id === '\u0000\u0000\u0000\u0000' ||
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.search(frameHeader.id[0]) === -1) {
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.indexOf(frameHeader.id[0]) === -1) {
break;

@@ -299,10 +300,2 @@ }

function sum (array) {
var result = 0;
for (var i = 0; i < array.length; i++) {
result += array[i]
}
return result;
}
function readMpegVersion (bits) {

@@ -309,0 +302,0 @@ if (equal(bits, [0, 0])) {

2

package.json
{
"name": "musicmetadata",
"description": "Streaming music metadata parser for node and the browser.",
"version": "0.6.2",
"version": "0.6.3",
"author": "Lee Treveil",

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

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