export const d3json = function(path, callback) {
  d3.json(path)
    .then(response => callback(null, response))
    .catch(error => callback(error));
};