UNPKG
theelitesubs
Version:
latest (1.0.0)
1.0.0
A simple wrapper to download subtitles from the yifysubtitles website.
theelitesubs
/
examples
/
test.js
10 lines
(7 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
yifysubtitles =
require
(
'..'
);
console
.
log
(
'dirname'
, __dirname);
yifysubtitles
(
'tt1156398'
, {
langs
: [
'fr'
,
'en'
,
'zh'
],
path
:
'/tmp'
}) .
then
(
res
=>
{
console
.
log
(
'res'
, res); }) .
catch
(
error
=>
console
.
log
(error));