pbeshai / react-taco-table

A table component for React based on column configuration :taco:
http://pbeshai.github.io/react-taco-table/
MIT License
30 stars 7 forks source link

Curry your formatter function #1

Closed iros closed 8 years ago

iros commented 8 years ago
export const decFormat = _.curry((f, value) => {
  return safeFormat(value, d3.format(`0.${f}f`)(value));
})

So that people can pass their own decimal point values.