mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
7 lines
154 B
JavaScript
7 lines
154 B
JavaScript
import UserAgent from 'user-agents';
|
|
const userAgent = new UserAgent();
|
|
|
|
export function getRandomUserAgent() {
|
|
return userAgent.random().toString();
|
|
}
|