https://github.com/oeo/object-count-to-percent
https://github.com/oeo/object-count-to-percent
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/oeo/object-count-to-percent
- Owner: oeo
- Created: 2016-02-03T23:34:41.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-03T23:34:57.000Z (over 9 years ago)
- Last Synced: 2025-03-17T13:15:28.546Z (2 months ago)
- Language: CoffeeScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# object-count-to-percent
# install
using [npm](https://npmjs.org)
```
npm i object-count-to-percent --save
```# example
``` coffeescript
console.log require('object-count-to-percent')({
safari: 100
chrome: 5
msie: 10
})# { safari: '87.0', chrome: '4.3', msie: '8.7' }
```