(...keys)
| 1637 | // General utility for querying the "meteor" section of package.json. |
| 1638 | // TODO Implement an API for setting these values? |
| 1639 | get(...keys) { |
| 1640 | let config = this._ensureInitialized(); |
| 1641 | if (config) { |
| 1642 | keys.every(key => { |
| 1643 | if (config && _.has(config, key)) { |
| 1644 | config = config[key]; |
| 1645 | return true; |
| 1646 | } |
| 1647 | }); |
| 1648 | return config; |
| 1649 | } |
| 1650 | } |
| 1651 | |
| 1652 | getNodeModulesToRecompileByArch() { |
| 1653 | const packageNamesByArch = Object.create(null); |
no test coverage detected