UNPKG

node_js_ipqs_db_reader

Version:

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

12 lines (11 loc) 275 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Column { constructor(name, type, raw = "") { this.rawValue = ""; this.name = name; this.type = type; this.rawValue = raw; } } exports.default = Column;