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: 2 months 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-05T15:32:13.000Z (over 7 years ago)
- Last Synced: 2025-04-17T22:45:52.613Z (3 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- 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');
```