You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							20 lines
						
					
					
						
							626 B
						
					
					
				
			
		
		
	
	
							20 lines
						
					
					
						
							626 B
						
					
					
				| // eslint-disable-next-line import/prefer-default-export
 | |
| export var t = function t(format) {
 | |
|   return format.replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g, function (_, a, b) {
 | |
|     return a || b.slice(1);
 | |
|   });
 | |
| };
 | |
| export var englishFormats = {
 | |
|   LTS: 'h:mm:ss A',
 | |
|   LT: 'h:mm A',
 | |
|   L: 'MM/DD/YYYY',
 | |
|   LL: 'MMMM D, YYYY',
 | |
|   LLL: 'MMMM D, YYYY h:mm A',
 | |
|   LLLL: 'dddd, MMMM D, YYYY h:mm A'
 | |
| };
 | |
| export var u = function u(formatStr, formats) {
 | |
|   return formatStr.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g, function (_, a, b) {
 | |
|     var B = b && b.toUpperCase();
 | |
|     return a || formats[b] || englishFormats[b] || t(formats[B]);
 | |
|   });
 | |
| }; |