Sha256: 1404c0506f8b3548bd3abd4eb6e65a787b5a0ad4e772eb2bd4eb7c9bddeb181a
Contents?: true
Size: 454 Bytes
Versions: 18
Compression:
Stored size: 454 Bytes
Contents
import { BaseLink } from "@/links/base" import type { Link, LinkType } from "@/types" export class GreyNoise extends BaseLink implements Link { public baseURL: string public name: string public type: LinkType public constructor() { super() this.baseURL = "https://www.greynoise.io" this.name = "GreyNoise" this.type = "ip" } public href(data: string): string { return this.baseURL + `/viz/query?gnql=ip:${data}` } }
Version data entries
18 entries across 18 versions & 1 rubygems