Skip to content

Instantly share code, notes, and snippets.

@nshimiye
Last active November 17, 2018 04:03
Show Gist options
  • Save nshimiye/da79170b1e72474c156d6ed7d11b38d8 to your computer and use it in GitHub Desktop.
Save nshimiye/da79170b1e72474c156d6ed7d11b38d8 to your computer and use it in GitHub Desktop.
export function createChartjsData(breakdown) {
const [labels, dailySales] = breakdown.reduce(
(acc, { label, dailySale }) => {
const [labelList, saleList] = acc;
return [
[...labelList, label],
[...saleList, dailySale],
];
},
[[], []],
);
return { labels, dailySales };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment