mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
8 lines
134 B
JavaScript
8 lines
134 B
JavaScript
// TODO remove once v2 is retired
|
|
|
|
module.exports = function nullify (user) {
|
|
user.ops = null;
|
|
user.fns = null;
|
|
user = null;
|
|
};
|