* A helper method for getting the contents of package.json at a given path
(path)
| 24 | * A helper method for getting the contents of package.json at a given path |
| 25 | */ |
| 26 | function getParsedPackageJsonFromPath (path) { |
| 27 | return getParsedJsonFromFile(path, 'package.json'); |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Test if the passed argument is a function |
no test coverage detected