mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-26 16:52:12 +05:30
Lint player.js
Follow lint indications : - https://github.com/iv-org/invidious/pull/2895#discussion_r809461103 - https://github.com/iv-org/invidious/pull/2895#discussion_r809461622
This commit is contained in:
parent
7048193f00
commit
1e3f4ed398
@ -185,9 +185,7 @@ player.playbackRate(video_data.params.speed);
|
|||||||
* @returns cookieValue
|
* @returns cookieValue
|
||||||
*/
|
*/
|
||||||
function getCookieValue(name) {
|
function getCookieValue(name) {
|
||||||
var value = document.cookie.split(";").filter(item => {
|
var value = document.cookie.split(";").filter(item => item.includes(name + "="));
|
||||||
return item.includes(name + "=");
|
|
||||||
});
|
|
||||||
return value != null && value.length >= 1 ? value[0].substring((name + "=").length, value[0].length) : null;
|
return value != null && value.length >= 1 ? value[0].substring((name + "=").length, value[0].length) : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user