react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
16 lines (15 loc) • 316 B
JavaScript
;
import { hasSuffix } from '../../utils';
export function parseDimensionValue(value) {
if (typeof value === 'object') {
return;
}
if (typeof value === 'string') {
return value;
}
if (!hasSuffix(value)) {
return `${value}px`;
}
return value;
}
//# sourceMappingURL=utils.js.map