All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.progress.es.js Maven / Gradle / Ivy

There is a newer version: 10.17.0
Show newest version
const progress = (min, max, value) => max - min === 0 ? 1 : (value - min) / (max - min);

export { progress };




© 2015 - 2024 Weber Informatics LLC | Privacy Policy