UNPKG
teroboxdl
Version:
latest (1.0.1)
1.0.1
1.0.0
download terabox video via url
teroboxdl
/
index.js
8 lines
(6 loc)
•
243 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
axios =
require
(
"axios"
);
async
function
terabox
(
url, apikey
) {
const
resr =
await
axios.
get
(
`https://api.zoner.biz.id/api/download/terabox?url=
${url}
&apikey=
${apikey}
`
);
return
resr.
data
; }
module
.
exports
= { terabox };