UNPKG

the-logs

Version:

Stop using console.log and use this simple logs API for your daily proccess.

16 lines (15 loc) 421 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Factory = void 0; const types_1 = require("../types"); const _1 = require("./"); class Factory { } exports.Factory = Factory; Factory.getWriter = (writer, props) => { const writers = { [types_1.Writer.CONSOLE]: _1.ConsoleWriter, [types_1.Writer.FILE]: _1.FileWriter, }; return new writers[writer](props); };