Remove debug and tweak template whitespace for pretty printing.

Former-commit-id: 1f00899af1210dd367718aad4db38453509747c2
This commit is contained in:
John-David Dalton
2012-05-08 17:34:13 -04:00
parent ccbf965bd9
commit 98435d2d92
2 changed files with 15 additions and 17 deletions

View File

@@ -151,7 +151,7 @@
Foo.a = 1;
Foo.b = 2;
var expected = { 'a': 1, 'b': 2 }; console.log(_.keys(_.extend({}, Foo)))
var expected = { 'a': 1, 'b': 2 };
deepEqual(_.extend({}, Foo), expected);
Foo.prototype = { 'c': 3 };