UNPKG
youtube-s-dl
Version:
latest (1.1.0-beta)
1.1.0-beta
1.0.9-beta
1.0.8-beta
1.0.7-beta
1.0.6-beta
1.0.5-beta
1.0.4-beta
1.0.2-beta
1.0.1-beta
1.0.0-beta
A YouTube Video/Audio downloader.
github.com/lester51/yt-s-dl
lester51/yt-s-dl
youtube-s-dl
/
utils
/
sig-check.js
7 lines
•
162 B
JavaScript
View Raw
1
2
3
4
5
6
7
module
.
exports
.
checkSig
=
(
arr
) =>
{
let
hasSig =
false
; arr.
forEach
(
obj
=>
{
if
(obj.
signatureCipher
) hasSig =
true
; });
return
hasSig; }