randydev commited on
Commit
44fd832
·
verified ·
1 Parent(s): 44f83ae

Update lib/all.js

Browse files
Files changed (1) hide show
  1. lib/all.js +6 -0
lib/all.js CHANGED
@@ -33,6 +33,11 @@ async function XsearchDownloaderV2(q) {
33
  return CreatorOriginal(data);
34
  }
35
 
 
 
 
 
 
36
  export {
37
  facebookdl,
38
  savefrom,
@@ -58,4 +63,5 @@ export {
58
  PinterestDownloader,
59
  InstagramDLV2,
60
  XsearchDownloaderV2,
 
61
  };
 
33
  return CreatorOriginal(data);
34
  }
35
 
36
+ async function XInfoDownloaderV2(url) {
37
+ const data = await xpro.default.info(url);
38
+ return CreatorOriginal(data);
39
+ }
40
+
41
  export {
42
  facebookdl,
43
  savefrom,
 
63
  PinterestDownloader,
64
  InstagramDLV2,
65
  XsearchDownloaderV2,
66
+ XInfoDownloaderV2
67
  };