index
:
Advanced-React.git
master
Starter Files and Solutions for Full Stack Advanced React and GraphQL
Git Server
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
formatMoney.js
blob: edddf4866cfe86498809391445e8ce07af69efd8 (
plain
)
1
2
3
export default function
(
amount
) {
return
'$'
+ (
amount
/
100
).
toLocaleString
();
}