var get_comments = function()

in index.js [29:38]


var get_comments = function() {
    var comments;
    if (fs.existsSync('./comments.json')) {
        comments = fs.readFileSync('./comments.json');
        comments = JSON.parse(comments);
    } else {
        comments = [];
    }
    return comments;
};