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