UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

10 lines (7 loc) 274 B
import { toISOStringTimezone } from './chunk-DAEL77WD.mjs'; // src/isISOStringTimeZone/index.ts function isISOStringWithTimezone(val) { const d = new Date(val); return !Number.isNaN(d.valueOf()) && toISOStringTimezone(d) === val; } export { isISOStringWithTimezone };