(configDir)
| 1449 | |
| 1450 | // Helper functions shared across object members |
| 1451 | function _toAbsolutePath (configDir) { |
| 1452 | if (configDir.indexOf('.') === 0) { |
| 1453 | return Path.join(process.cwd(), configDir); |
| 1454 | } |
| 1455 | |
| 1456 | return configDir; |
| 1457 | } |
| 1458 | |
| 1459 | function _loadParser(name, dir = process.cwd()) { |
| 1460 | if (name === undefined) { |
no outgoing calls
no test coverage detected