UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

10 lines (8 loc) 238 B
'use strict'; import type { ValueProcessor } from '../../../../common'; export const convertStringToNumber = <S extends string>( conversions: Record<S, number> ): ValueProcessor<S, number> => (value) => conversions[value];