The <strong>nicetix</strong> function returns an array of evenly spaced, "nice" numbers based on a given minimum, maximum, and an upper limit on the number of values you want.
npm install nicetixsh
$ npm install nicetix
`
`JS
import nicetix from "nicetix";
// nicetix(min, max, )
let ticks = nicetix(-1.23, 12.3, 5);
// -> [-5, 0, 5, 10, 15]
``