UNPKG

rsuite

Version:

A suite of react components

8 lines 259 B
'use client'; /** * Extracts the time format from a given date format. */ export function extractTimeFormat(format) { var match = format.match(/([hH]{1,2}[:.]mm(?:[:.]ss)?(?: ?aa)?|(?:aa )?[hH]{1,2}[:.]mm(?:[:.]ss)?)/); return match ? match[0] : null; }