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