UNPKG

web-scrapify

Version:

A simple web scraper that can scrape product details from various e-commerce platforms.

9 lines (7 loc) 196 B
import { USER_AGENTS } from "./CONSTANTS"; export class Agents { constructor() {} getAgent(): string { return USER_AGENTS[Math.floor(Math.random() * USER_AGENTS.length)]; } }