Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coip/moneypenny
decoupling semantics of client code and the plumbing its implemented via, seeking a simple client-development experience with performance under the hood.
https://github.com/coip/moneypenny
Last synced: 28 days ago
JSON representation
decoupling semantics of client code and the plumbing its implemented via, seeking a simple client-development experience with performance under the hood.
- Host: GitHub
- URL: https://github.com/coip/moneypenny
- Owner: coip
- License: mit
- Created: 2019-03-31T02:58:09.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-22T23:01:16.000Z (almost 2 years ago)
- Last Synced: 2024-11-15T11:18:13.232Z (3 months ago)
- Language: Go
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# `moneypenny`
this project is currently intended to enable a few things:
- formatting agnostic (ie 1000 vs 10.00 vs $100), w.r.t. strings mostly
- primitive agnostic, but consolidated.
- provide a simple way for financial applications to be created with a higher degree of semantic value.
- provide a straightforward reference for actions
Doesnt handle currently: (feel free to open a pr :-) )
- -$100
- -$100.00
- ($100)
- (100)----
to elaborate on ~agnostic: [money.Money](./money.go) *is* impl'd via [decimal](https://github.com/shopspring/decimal) under the hood at the moment,
but provides a means of homologating various input types while consolidating into a single underlying type that plays well with both presentation-layer and persistence-layer.
----
# latest benchmarks
Visit the Go Build task under the Actions tab to find `unit test` and `benchmarking` results..