Skip to main content
Module

x/culori/round.js

A comprehensive color library for JavaScript.
Go to Latest
File
// From: https://github.com/d3/d3-format/issues/32
const r = (value, precision) => Math.round(value * (precision = Math.pow(10, precision))) / precision;
const round = (precision = 4) => value => typeof value === 'number' ? r(value, precision) : value;
export default round;