UNPKG

react-native-daterange

Version:

[![npm version](https://img.shields.io/npm/v/react-native-daterange.svg?style=flat-square)](https://www.npmjs.com/package/react-native-daterange) [![npm downloads](https://img.shields.io/npm/dm/react-native-daterange.svg?style=flat-square)](https://www.np

18 lines (15 loc) 569 B
export const dates = (startDate, endDate, focusedInput) => { if (focusedInput === 'startDate') { if (startDate && endDate) { return { startDate, endDate: null, focusedInput: 'endDate' }; } return { startDate, endDate, focusedInput: 'endDate' }; } if (focusedInput === 'endDate') { if (endDate && startDate && endDate.isBefore(startDate)) { return { startDate: endDate, endDate: null, focusedInput: 'endDate' }; } return { startDate, endDate, focusedInput: 'startDate' }; } return { startDate, endDate, focusedInput }; };