export const progress = (min, max, value) => max - min === 0 ? 1 : (value - min) / (max - min); //# sourceMappingURL=progress.js.map