strong-tie/inbound-calls
0
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 