Files
habitica/website/common/script/libs/gold.js
Matteo Pagliazzi cca5b8492b fix exports
2019-10-01 17:53:48 +02:00

10 lines
135 B
JavaScript

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