Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/js/main/date/src/internal/ |
Upload File : |
import { Type } from 'main.core'; export function convertBitrixFormat(format: any): string { if (!Type.isStringFilled(format)) { return ''; } return format.replace('YYYY', 'Y') // 1999 .replace('MMMM', 'F') // January - December .replace('MM', 'm') // 01 - 12 .replace('M', 'M') // Jan - Dec .replace('DD', 'd') // 01 - 31 .replace('G', 'g') // 1 - 12 .replace(/GG/i, 'G') // 0 - 23 .replace('H', 'h') // 01 - 12 .replace(/HH/i, 'H') // 00 - 24 .replace('MI', 'i') // 00 - 59 .replace('SS', 's') // 00 - 59 .replace('TT', 'A') // AM - PM .replace('T', 'a'); // am - pm }