New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

simple-youtube-api

Package Overview
Dependencies
Maintainers
2
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-youtube-api - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

0

.eslintrc.json

@@ -0,0 +0,0 @@ {

@@ -0,0 +0,0 @@ const YouTube = require('simple-youtube-api');

@@ -0,0 +0,0 @@ const YouTube = require('simple-youtube-api');

@@ -0,0 +0,0 @@ const YouTube = require('simple-youtube-api');

module.exports = require('./src/YouTube');

@@ -0,0 +0,0 @@ {

2

package.json
{
"name": "simple-youtube-api",
"version": "3.0.0",
"version": "3.0.1",
"description": "A module to simplify the YouTube API.",

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

@@ -0,0 +0,0 @@ # Simple YouTube API

@@ -0,0 +0,0 @@ exports.PARTS = {

@@ -0,0 +0,0 @@ const { parseURL } = require('../util');

@@ -0,0 +0,0 @@ const { parseURL } = require('../util');

@@ -0,0 +0,0 @@ const { parse } = require('url');

@@ -72,3 +72,3 @@ const request = require('request-promise-native');

return this.request(Constants.ENDPOINTS.Videos, Object.assign(options, { id, part: Constants.PARTS.Videos }))
.then(result => new Video(this, result.items[0]));
.then(result => result.items.length ? new Video(this, result.items[0]) : null);
}

@@ -108,3 +108,3 @@

return this.request(Constants.ENDPOINTS.Playlists, Object.assign(options, { id, part: Constants.PARTS.Playlists }))
.then(result => new Playlist(this, result.items[0]));
.then(result => result.items.length ? new Playlist(this, result.items[0]) : null);
}

@@ -144,3 +144,3 @@

return this.request(Constants.ENDPOINTS.Channels, Object.assign(options, { id, part: Constants.PARTS.Channels }))
.then(result => new Channel(this, result.items[0]));
.then(result => result.items.length ? new Channel(this, result.items[0]) : null);
}

@@ -147,0 +147,0 @@

@@ -0,0 +0,0 @@ /* globals describe, it, before */

@@ -0,0 +0,0 @@ const assert = require('assert');

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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