Sha256: 195118f28264f344ccf8b519c5ead47088d0f22f2dca860bb28bb5dc8878994f
Contents?: true
Size: 426 Bytes
Versions: 18
Compression:
Stored size: 426 Bytes
Contents
import { BaseLink } from "@/links/base" import type { Link, LinkType } from "@/types" export class Crtsh extends BaseLink implements Link { public baseURL: string public name: string public type: LinkType public constructor() { super() this.baseURL = "https://crt.sh" this.name = "crt.sh" this.type = "domain" } public href(data: string): string { return this.baseURL + `/?q=${data}` } }
Version data entries
18 entries across 18 versions & 1 rubygems