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.
		
		
		
		
		
			
		
			
				
					15 lines
				
				347 B
			
		
		
			
		
	
	
					15 lines
				
				347 B
			| 
								 
											3 years ago
										 
									 | 
							
								// Top level file is just a mixin of submodules & constants
							 | 
						||
| 
								 | 
							
								'use strict';
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								var assign    = require('./lib/utils/common').assign;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								var deflate   = require('./lib/deflate');
							 | 
						||
| 
								 | 
							
								var inflate   = require('./lib/inflate');
							 | 
						||
| 
								 | 
							
								var constants = require('./lib/zlib/constants');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								var pako = {};
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								assign(pako, deflate, inflate, constants);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								module.exports = pako;
							 |