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

@nechlophomeriaa/spotifydl

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nechlophomeriaa/spotifydl - npm Package Compare versions

Comparing version 1.0.22 to 1.0.23

6

dist/cjs/function/index.js

@@ -35,5 +35,5 @@ function isUrl(url) {

function convertMs(duration) {
seconds = parseInt((duration / 1000) % 60)
minutes = parseInt((duration / (1000 * 60)) % 60)
hours = parseInt((duration / (1000 * 60 * 60)) % 24)
var seconds = parseInt((duration / 1000) % 60)
var minutes = parseInt((duration / (1000 * 60)) % 60)
var hours = parseInt((duration / (1000 * 60 * 60)) % 24)
hours = hours < 10 ? "0" + hours : hours

@@ -40,0 +40,0 @@ minutes = minutes < 10 ? "0" + minutes : minutes

@@ -35,5 +35,5 @@ export function isUrl(url) {

export function convertMs(duration) {
seconds = parseInt((duration / 1000) % 60)
minutes = parseInt((duration / (1000 * 60)) % 60)
hours = parseInt((duration / (1000 * 60 * 60)) % 24)
var seconds = parseInt((duration / 1000) % 60)
var minutes = parseInt((duration / (1000 * 60)) % 60)
var hours = parseInt((duration / (1000 * 60 * 60)) % 24)
hours = hours < 10 ? "0" + hours : hours

@@ -40,0 +40,0 @@ minutes = minutes < 10 ? "0" + minutes : minutes

@@ -350,3 +350,3 @@ import { isUrl, tags2, tags, convertMs } from "../function/index.js"

}
console.log(result)
console.log(err)
return result

@@ -353,0 +353,0 @@ }

@@ -12,3 +12,3 @@ {

"description": "Simple Scraper Spotify Track/Album/Playlist Downloader with Metadata",
"version": "1.0.22",
"version": "1.0.23",
"main": "./dist/cjs/index.js",

@@ -15,0 +15,0 @@ "module": "./dist/esm/src/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