Controller functions for json files reading and writing
        
        
- Version:
- 
		- 0.0.2
 
Methods
- 
    <inner> getJSON(path)
- 
    
    Returns the content of the JSON fileParameters:Name Type Description pathstring The absolute path of the config file Returns:The config in JSON format, null if the file doesn't exist or is not a properly formatted JSON object- Type
- json
 ExampleExample usage of getJSON. getJSON(__dirname + '/config.json') 
- 
    <inner> isJSON(data)
- 
    
    Check if the data is a properly formatted JSON fileParameters:Name Type Description datastring Returns:null if the data was not a properly formatted JSON object, the data in JSON if otherwise- Type
- JSON