mirror of
https://github.com/zulip/zulip.git
synced 2026-06-30 21:11:04 +08: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];
|
|
}
|
|
}
|
|
};
|