Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benelliott/numeral-es6
Exports numeral.js as an ES6 default export. Like moment-es6, but for numeral.js.
https://github.com/benelliott/numeral-es6
Last synced: 3 days ago
JSON representation
Exports numeral.js as an ES6 default export. Like moment-es6, but for numeral.js.
- Host: GitHub
- URL: https://github.com/benelliott/numeral-es6
- Owner: benelliott
- Created: 2018-04-05T15:19:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-05T15:32:13.000Z (almost 7 years ago)
- Last Synced: 2025-01-03T02:37:30.501Z (24 days ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# numeral-es6
Exports numeral.js as an ES6 default export. Like moment-es6, but for numeral.js.## Installation
```
[npm|yarn] install numeral-es6
```## Usage
```javascript
import numeral from 'numeral-es6';console.log(numeral(13124.23, '$0,0[.]00');
```