(keys)
| 1 | class ApiKeySwitcher { |
| 2 | constructor(keys) { |
| 3 | this.keys = keys || []; |
| 4 | this.currentIndex = 0; |
| 5 | this.userToken = localStorage.getItem('userOmdbToken'); // توکن کاربر |
| 6 | } |
| 7 | |
| 8 | getCurrentKey() { |
| 9 | if (this.userToken) { |
nothing calls this directly
no outgoing calls
no test coverage detected