UNPKG

react-native-screen-transitions

Version:
12 lines (10 loc) 324 B
"use strict"; /** * Utility function to map raw gesture translation to a progress value. */ export const mapGestureToProgress = (translation, dimension) => { "worklet"; const rawProgress = translation / dimension; return Math.max(0, Math.min(1, rawProgress)); }; //# sourceMappingURL=map-gesture-to-progress.js.map