function get()

in tools/generate-xhtml-entities.js [5:16]


function get(uri, callback) {
    var content = '';
    // console.log('Downloading', uri);
    https.request(uri, function (response) {
        response.on('data', function (chunk) {
            content += chunk;
        });
        response.on('end', function () {
            callback(content);
        });
    }).end();
}