mirror of
https://github.com/TheBeastLT/torrentio-scraper.git
synced 2026-01-11 22:40:22 +00:00
6 lines
154 B
JavaScript
6 lines
154 B
JavaScript
import UserAgent from 'user-agents';
|
|
const userAgent = new UserAgent();
|
|
|
|
export function getRandomUserAgent() {
|
|
return userAgent.random().toString();
|
|
}
|