mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 06:37:23 +01:00
10 lines
132 B
JavaScript
10 lines
132 B
JavaScript
// TODO move to client
|
|
|
|
module.exports = function(num) {
|
|
if (num) {
|
|
return Math.floor(num);
|
|
} else {
|
|
return "0";
|
|
}
|
|
};
|