numeral
Version:
Format and manipulate numbers.
19 lines (17 loc) • 447 B
JavaScript
/*! @preserve
* numeral.js
* <%= type %> : 2.0.6
* license : MIT
* http://adamwdraper.github.com/Numeral-js/
*/
(function (global, factory) {
if (typeof define === 'function' && define.amd) {
define(['numeral'], factory);
} else if (typeof module === 'object' && module.exports) {
factory(require('./numeral'));
} else {
factory(global.numeral);
}
}(this, function (numeral) {
<%= content %>
}));