UNPKG

wdym

Version:

Convert Common Log Format (CLF) into more useful (and human-readable) JSON and/or CSV.

14 lines (11 loc) 242 B
const wdymJSON = require('./writers/wdymJSON') const wdymCSV = require('./writers/wdymCSV') /** * What do you mean? * * A factory for converting CLF to CSV and JSON. */ module.exports = { json: new wdymJSON(), csv: new wdymCSV(), }