UNPKG

node_js_ipqs_db_reader

Version:

A Node JS implementation of the IPQualityScore flat file IP reputation database reader.

7 lines (6 loc) 220 B
import FileReader from "./FileReader"; export default class DBReader { static readonly IPQS_READER_VERSION = 1; static readonly HEADER_PREFIX_BYTES = 11; static Open(filename: string): Promise<FileReader>; }