Skip to main content
Module

x/useragents/mod.ts>common

User agent utils for Deno.
Go to Latest
function common
import { common } from "https://deno.land/x/useragents@1.0.1/mod.ts";

Fetch the list of common UserAgents

Example

import { common } from 'https://deno.land/x/useragents/mod.ts'

const agents = await common();

console.log('Common UserAgents:',agents);
...

const rawData = await common({ raw : true });

console.log('Common UserAgents:',rawData);

Parameters

options: CommonOptions