Sha256: 5d0f4891e21a33d25a49b9fe9a64b4bc278170ee5731cb21abac7f1bdb9328ad
Contents?: true
Size: 445 Bytes
Versions: 18
Compression:
Stored size: 445 Bytes
Contents
import { BaseLink } from "@/links/base" import type { Link, LinkType } from "@/types" export class Intezer extends BaseLink implements Link { public baseURL: string public name: string public type: LinkType public constructor() { super() this.baseURL = "https://analyze.intezer.com" this.name = "Intezer" this.type = "hash" } public href(data: string): string { return this.baseURL + `/#/files/${data}` } }
Version data entries
18 entries across 18 versions & 1 rubygems