CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
index.js19 linesDownload Raw Back to abstract-logging
1'use strict'2 3function noop () { }4 5const proto = {6  fatal: noop,7  error: noop,8  warn: noop,9  info: noop,10  debug: noop,11  trace: noop12}13 14Object.defineProperty(module, 'exports', {15  get () {16    return Object.create(proto)17  }18})19