ember-cli-numeral

1.0.0 • Public • Published

ember-cli-numeral

Build Status Ember Observer Score NPM Version Ember badge

ES6 accessible module for Numeral.js within your Ember applications.

Install

ember install ember-cli-numeral

Usage

import numeral from 'numeral';
 
let string = numeral(1000).format('0,0');
// '1,000'

See the Numeral.js docs for general usage.

Including Numeral.js locales

To include all the Numeral.js locales definitions, you need to add the following configuration to your ember-cli-build.js.

let app = new EmberApp(defaults, {
  numeral: {
    includeLocales: ['en-gb', 'pl']
  }
});

Then import locales to register them, and activate them:

import numeral from 'numeral';
import 'numeral/en-gb';
import 'numeral/pl';
 
let string = numeral.locale('pl') && numeral(1000).format('0,0 $');
 
numeral.locale('en-gb');
let string2 = numeral(50).format('0.0[0]');
 
numeral.locale('en');

Note: the "en" locale is loaded by default.

FastBoot compatibility

This addon is compatible with FastBoot out of the box.

License

ember-cli-numeral shims is MIT Licensed.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    3,657
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    3,657
  • 0.2.0
    1,536
  • 0.1.2
    1,386
  • 0.1.1
    2

Package Sidebar

Install

npm i ember-cli-numeral

Weekly Downloads

1,527

Version

1.0.0

License

MIT

Last publish

Collaborators

  • jayphelps
  • josemarluedke