1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2025-07-02 04:18:38 -04:00

Move utils.js to browserify/require() format

This commit is contained in:
2016-02-13 16:41:44 -05:00
parent b59fd60817
commit d6ddf0f65f
4 changed files with 9 additions and 1 deletions

View File

@ -25,3 +25,8 @@ const getAccountDisplayName = function(account, account_map) {
}
return name;
};
module.exports = {
getAccountDisplayList: getAccountDisplayList,
getAccountDisplayName: getAccountDisplayName
};