UNPKG

447 BJavaScriptView Raw
1/*! @preserve
2 * numeral.js
3 * <%= type %> : 2.0.4
4 * license : MIT
5 * http://adamwdraper.github.com/Numeral-js/
6 */
7
8(function (global, factory) {
9 if (typeof define === 'function' && define.amd) {
10 define(['numeral'], factory);
11 } else if (typeof module === 'object' && module.exports) {
12 factory(require('./numeral'));
13 } else {
14 factory(global.numeral);
15 }
16}(this, function (numeral) {
17 <%= content %>
18}));