Browse Source

util: output Dates with Date.toString not Date.toUTCString

v0.7.4-release
Avi Flax 13 years ago
committed by Ben Noordhuis
parent
commit
ee0a7b928b
  1. 2
      lib/util.js
  2. 2
      test/simple/test-sys.js

2
lib/util.js

@ -181,7 +181,7 @@ function formatValue(ctx, value, recurseTimes) {
return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');
}
if (isDate(value)) {
return ctx.stylize(Date.prototype.toUTCString.call(value), 'date');
return ctx.stylize(Date.prototype.toString.call(value), 'date');
}
if (isError(value)) {
return formatError(value);

2
test/simple/test-sys.js

@ -31,7 +31,7 @@ assert.equal('[Function]', common.inspect(function() {}));
assert.equal('undefined', common.inspect(undefined));
assert.equal('null', common.inspect(null));
assert.equal('/foo(bar\\n)?/gi', common.inspect(/foo(bar\n)?/gi));
assert.equal('Sun, 14 Feb 2010 11:48:40 GMT',
assert.equal('Sun Feb 14 2010 12:48:40 GMT+0100 (CET)',
common.inspect(new Date('Sun, 14 Feb 2010 11:48:40 GMT')));
assert.equal("'\\n\\u0001'", common.inspect('\n\u0001'));

Loading…
Cancel
Save