@stoqey/finnhub
Version:
NodeJS Finhubb wrapper
13 lines • 378 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.log = void 0;
var config_1 = require("../config");
exports.log = function (logName, data) {
if (config_1.isDev || config_1.forceLog) {
if (data) {
return console.log(logName, data);
}
return console.log(logName);
}
};
//# sourceMappingURL=log.js.map