Merge branch 'master' of ssh://numinibsd/git/base/enigma-bbs

This commit is contained in:
Bryan Ashby 2016-09-08 22:32:39 -06:00
commit fdde83fad8
2 changed files with 1 additions and 2 deletions

View File

@ -322,7 +322,7 @@ module.exports = function format(fmt, obj) {
tokens = tokenizeFormatSpec(formatSpec || '');
if(!isNaN(parseInt(value))) {
if(_.isNumber(value)) {
out += formatNumber(value, tokens);
} else {
out += formatString(value, tokens);

View File

@ -81,4 +81,3 @@ WhosOnlineModule.prototype.mciReady = function(mciData, cb) {
}
);
};