UNPKG

aoc-automation

Version:

Advent of Code tool to automate the repetitive parts of AoC.

6 lines (4 loc) 130 B
const toFixed = (value: number, precision: number = 3) => { return Number(value.toFixed(precision)); }; export default toFixed;