Skip to content

Commit c5e7547

Browse files
Fix variable declaration.
1 parent 636f30c commit c5e7547

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/prototype/lang/object.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@
181181
case false: return 'false';
182182
}
183183

184-
type = typeof value;
184+
var type = typeof value;
185185
switch (type) {
186186
case 'string':
187187
return value.inspect(true);

0 commit comments

Comments
 (0)