sankey = {
const sankey = d3.sankey()
.nodeId(d => d.name)
.nodeAlign(d3[`sankeyLeft`])
.nodeWidth(12)
.nodePadding(48)
.extent([[1, 5], [params.svg.width - 1, params.plot.height - 5]]);
return ({nodes, links}) => sankey({
nodes: nodes.map(d => Object.assign({}, d)),
links: links.map(d => Object.assign({}, d))
});
}