CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
debug.js20 linesDownload Raw Back to lib
1'use strict'2 3const { debuglog } = require('node:util')4 5/**6 * @callback DebugLogger7 * @param {string} msg8 * @param {...unknown} param9 * @returns {void}10 */11 12/**13 * @type {DebugLogger}14 */15const debug = debuglog('avvio')16 17module.exports = {18  debug19}20