UNPKG

react-native-stonk-charts

Version:

A beautiful, performant chart library for React Native. Fork of react-native-wagmi-charts with Reanimated v4 support.

17 lines (16 loc) 272 B
/** * @worklet */ export function formatDatetime({ value, locale = 'en-US', options = {}, }: { value: number; locale?: string; options?: Intl.DateTimeFormatOptions; }) { 'worklet'; const d = new Date(value); return d.toLocaleString(locale, options); }