UNPKG

@typed-tabletop-simulator/lib

Version:
10 lines (9 loc) 230 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const round = (value, places) => { const factor = 10 ** places; return Math.round(value * factor) / factor; }; exports.default = { round, };