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