UNPKG

d3-format

Version:

Format numbers for human consumption.

8 lines (7 loc) 154 B
export default function(numerals) { return function(value) { return value.replace(/[0-9]/g, function(i) { return numerals[+i]; }); }; }