YT: cache current decipher actions

This commit is contained in:
Rafostar
2021-03-14 21:00:18 +01:00
parent 6370e1126b
commit 06f8e5d259
2 changed files with 45 additions and 2 deletions

View File

@@ -109,3 +109,8 @@ function decodeURIPlus(uri)
{
return decodeURI(uri.replace(/\+/g, ' '));
}
function isHex(num)
{
return Boolean(num.match(/[0-9a-f]+$/i));
}