mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-24 13:48:14 -05:00
15 lines
237 B
JavaScript
15 lines
237 B
JavaScript
'use strict';
|
|
|
|
const numeral = require('numeral');
|
|
|
|
module.exports = {
|
|
|
|
/**
|
|
* @param {Integer} number
|
|
* @returns {String}
|
|
*/
|
|
niceNumber: function (number) {
|
|
return numeral(number).format('0,0');
|
|
}
|
|
};
|