Sha256: 8658fff3460e29fdee58437f286773c7f037db0ff67fd2d534a42569916aa34a
Contents?: true
Size: 449 Bytes
Versions: 18
Compression:
Stored size: 449 Bytes
Contents
import { BaseLink } from "@/links/base" import type { Link, LinkType } from "@/types" export class AnyRun extends BaseLink implements Link { public baseURL: string public name: string public type: LinkType public constructor() { super() this.baseURL = "https://app.any.run" this.name = "ANY.RUN" this.type = "hash" } public href(data: string): string { return this.baseURL + `/submissions/#filehash:${data}` } }
Version data entries
18 entries across 18 versions & 1 rubygems