()
| 86 | // be accessed. |
| 87 | function debuglog(set, cb) { |
| 88 | function init() { |
| 89 | set = StringPrototypeToUpperCase(set); |
| 90 | enabled = testEnabled(set); |
| 91 | } |
| 92 | let debug = (...args) => { |
| 93 | init(); |
| 94 | // Only invokes debuglogImpl() when the debug function is |
searching dependent graphs…