mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
	
	
		
			17 lines
		
	
	
		
			268 B
		
	
	
	
		
			JavaScript
		
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			268 B
		
	
	
	
		
			JavaScript
		
	
	
	
|  | /* | ||
|  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | ||
|  | */ | ||
|  | 
 | ||
|  | "use strict"; | ||
|  | 
 | ||
|  | class DateObjectSerializer { | ||
|  | 	serialize(obj, { write }) { | ||
|  | 		write(obj.getTime()); | ||
|  | 	} | ||
|  | 	deserialize({ read }) { | ||
|  | 		return new Date(read()); | ||
|  | 	} | ||
|  | } | ||
|  | 
 | ||
|  | module.exports = DateObjectSerializer; |