randydev commited on
Commit
574078f
·
verified ·
1 Parent(s): b7d82f2

Update lib/all.js

Browse files
Files changed (1) hide show
  1. lib/all.js +10 -0
lib/all.js CHANGED
@@ -15,6 +15,9 @@ import { PinterestDownloader } from '../lib/@randydev/pinterest.js';
15
  import { TeraboxDownloader, TeraboxV2Downloader } from '../lib/@randydev/terabox.js';
16
  import * as instagramGetUrl from "instagram-url-direct";
17
 
 
 
 
18
  import * as xpro from 'xnxx-scraper';
19
  import {
20
  TwitterDownloader,
@@ -31,6 +34,12 @@ async function InstagramDLV2(url) {
31
  return data;
32
  }
33
 
 
 
 
 
 
 
34
  async function XsearchDownloaderV2(q) {
35
  const data = await xpro.default.search(q);
36
  return CreatorOriginal(data);
@@ -66,6 +75,7 @@ export {
66
  TeraboxV2Downloader,
67
  PinterestDownloader,
68
  InstagramDLV2,
 
69
  XsearchDownloaderV2,
70
  XInfoDownloaderV2,
71
  };
 
15
  import { TeraboxDownloader, TeraboxV2Downloader } from '../lib/@randydev/terabox.js';
16
  import * as instagramGetUrl from "instagram-url-direct";
17
 
18
+ import { igdl } from 'ruhend-scraper'
19
+ const text = "link instagram"
20
+
21
  import * as xpro from 'xnxx-scraper';
22
  import {
23
  TwitterDownloader,
 
34
  return data;
35
  }
36
 
37
+ async function InstagramDLV3(url) {
38
+ const data = await igdl(url);
39
+ console.log(data);
40
+ return data;
41
+ }
42
+
43
  async function XsearchDownloaderV2(q) {
44
  const data = await xpro.default.search(q);
45
  return CreatorOriginal(data);
 
75
  TeraboxV2Downloader,
76
  PinterestDownloader,
77
  InstagramDLV2,
78
+ InstagramDLV3,
79
  XsearchDownloaderV2,
80
  XInfoDownloaderV2,
81
  };