0.0.2 • Published 7 years ago

nunjucks-numeral-filter v0.0.2

Weekly downloads
1,080
License
WTFPL
Repository
github
Last release
7 years ago

nunjucks-numeral-filter

A Nunjucks filter for numeral.js

Install

npm install nunjucks-numeral-filter --save

Use

You must first include the filter and then add it to your nunjucks environment

var numeralFilter = require('nunjucks-numeral-filter');

var env = new nunjucks.Environment();

env.addFilter('numeral', numeralFilter);

You can then call the filter in your nunjucks templates:

// parse a number string
{% set number = "$10,000.00" | numeral("value") %}

// or format a number
Salary paid out is {{ 104000 | numeral("0a") }}.

See all available formats

License - WTFPL

            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
                    Version 2, December 2004

 Copyright (C) 2015 WebEngage <geeks {at} webengage.com>

 Everyone is permitted to copy and distribute verbatim or modified
 copies of this license document, and changing it is allowed as long
 as the name is changed.

            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. You just DO WHAT THE FUCK YOU WANT TO.