(config)
| 6 | var current; |
| 7 | |
| 8 | function defaultConfig(config) { |
| 9 | config = config || {}; |
| 10 | |
| 11 | return readCachedConfig(config.cwd || process.cwd(), config); |
| 12 | } |
| 13 | |
| 14 | function readCachedConfig(cwd, overwrites) { |
| 15 | current = bowerConfig.create(cwd).load(overwrites); |
no test coverage detected
searching dependent graphs…