mirror of
https://github.com/zulip/zulip.git
synced 2025-10-24 00:23:49 +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];
|
|
}
|
|
}
|
|
};
|