Skip to content

Commit

Permalink
Fixing issue with number logger.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gozala committed Oct 25, 2010
1 parent 24cbc1c commit 07dc24f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/log.js
Expand Up @@ -47,7 +47,7 @@ function toSource(thing, indent, visited) {
result = '"' + thing + '"'
break
case 'number':
result = thing
result = '' + thing
break
case 'object':
if (null === thing) {
Expand Down

0 comments on commit 07dc24f

Please sign in to comment.