Viewing File: /home/ubuntu/route-and-root-frontend-base/node_modules/@motionone/utils/dist/progress.es.js

const progress = (min, max, value) => max - min === 0 ? 1 : (value - min) / (max - min);

export { progress };
Back to Directory File Manager