mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			259 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			259 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
"use strict";
 | 
						|
 | 
						|
exports.page_params = {};
 | 
						|
 | 
						|
exports.reset = () => {
 | 
						|
    for (const field in exports.page_params) {
 | 
						|
        if (Object.prototype.hasOwnProperty.call(exports.page_params, field)) {
 | 
						|
            delete exports.page_params[field];
 | 
						|
        }
 | 
						|
    }
 | 
						|
};
 |