fetch('/api/users', function(err, data) {
if (err) throw err;
parseJSON(data, function(err, json) {
if (err) throw err;
transform(json, function(err, result) {
if (err) throw err;
save(result, function(err) {
if (err) throw err;
// 😱 "Pyramid of doom"
});
});
});
});