You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

allsubs

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

allsubs - npm Package Compare versions

Comparing version
0.1.2
to
0.1.3
+1
-1
demo.js
var allsubs = require('./lib/allsubs.js');
console.log(allsubs.languages);
allsubs.get('the matrix', 1999, 'ro', 20, function(err, subs){
allsubs.get('the matrix revolutions', 2003, 'ro', 20, function(err, subs){
console.log(err, subs);
});

@@ -6,3 +6,3 @@ var http = require('http'),

var subs = [],
path = '/api/'+(limit || 50)+'/'+encodeURIComponent(movie_title.replace(' ', '-'))+'-'+year+'-'+(language || 'en');
path = '/api/'+(limit || 50)+'/'+encodeURIComponent(movie_title.replace(/[_|\s]+/g, '-'))+'-'+year+'-'+(language || 'en');

@@ -9,0 +9,0 @@ var req = http.request({

{
"name": "allsubs",
"version": "0.1.2",
"version": "0.1.3",
"description": "A node.js module for allsubs.org API",

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