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