mirror of
https://github.com/zulip/zulip.git
synced 2025-11-15 11:22:04 +00:00
12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
"use strict";
|
|
|
|
exports.page_params = {};
|
|
|
|
exports.reset = () => {
|
|
for (const field in exports.page_params) {
|
|
if (Object.hasOwn(exports.page_params, field)) {
|
|
delete exports.page_params[field];
|
|
}
|
|
}
|
|
};
|