| 31 | |
| 32 | function build(options) { |
| 33 | const hasDebug = obj => { |
| 34 | return obj && typeof obj === 'object' && obj.debug; |
| 35 | }; |
| 36 | const isDebug = hasDebug(options); |
| 37 | if (isDebug) { |
| 38 | let ns = typeof isDebug === 'string' ? isDebug : '*'; |
no outgoing calls
no test coverage detected
searching dependent graphs…