mirror of
https://github.com/TheBeastLT/torrentio-scraper.git
synced 2026-03-11 21:26:53 +00:00
8 lines
No EOL
193 B
JavaScript
8 lines
No EOL
193 B
JavaScript
const UserAgent = require('user-agents');
|
|
const userAgent = new UserAgent();
|
|
|
|
function getRandomUserAgent() {
|
|
return userAgent.random().toString();
|
|
}
|
|
|
|
module.exports = { getRandomUserAgent }; |