Files
habitica/common/script/libs/gold.js
2016-04-12 09:57:57 +02:00

10 lines
138 B
JavaScript

// TODO move to client
module.exports = function gold (num) {
if (num) {
return Math.floor(num);
} else {
return '0';
}
};