weechatRN

Weechat relay client for iOS using websockets https://github.com/mhoran/weechatRN
git clone http://git.hanabi.in/repos/weechatRN.git
Log | Files | Refs | README | LICENSE

date-formatter.ts (129B)


      1 import { format } from 'date-fns';
      2 
      3 export const formatDate = (date: string): string =>
      4   format(new Date(date), 'iii HH:mm:ss');