Probes the runtime to see if the locale defaults to Month-Day-Year (MDY) order. Useful for resolving ambiguous dates like '12/11/2024'.
The locale string to probe
True if the locale uses MDY format, false otherwise
probeMDY('en-US') // trueprobeMDY('en-GB') // false Copy
probeMDY('en-US') // trueprobeMDY('en-GB') // false
Probes the runtime to see if the locale defaults to Month-Day-Year (MDY) order. Useful for resolving ambiguous dates like '12/11/2024'.