Skip to content

Commit b4f3443

Browse files
authored
Update index.js to export youtubeDl (#199)
1 parent 985d678 commit b4f3443

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/index.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ const create = binaryPath => {
2121
return fn
2222
}
2323

24-
module.exports = create(constants.YOUTUBE_DL_PATH)
24+
const defaultInstance = create(constants.YOUTUBE_DL_PATH)
25+
26+
module.exports = defaultInstance
27+
module.exports.youtubeDl = defaultInstance
2528
module.exports.create = create
2629
module.exports.args = args
2730
module.exports.isJSON = isJSON

0 commit comments

Comments
 (0)