This is an Angular.js filter that applies Numeral.js formatting.
-
Include Numeral.js in your project
-
Include either the minified or non-minified javascript file from the
/dist/folder:
<script src="angular-numeraljs.js"></script>- Inject the
ngNumeraljsfilter into your app module:
var myApp = angular.module('myApp', ['ngNumeraljs']);- Apply the filter:
<p>
{{ price | numeraljs:'$0,0.00' }}
</p>The `/dist/' folder contains the regular and minified Javascript files.