Skip to content

Commit e0c7e05

Browse files
committed
ES6 to ES5 in console-logs.js test file
1 parent 06ef168 commit e0c7e05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
console.log('One');
22
console.warn('Two', { a: 1 });
33
console.error('Error 2');
4-
let a = () => {
4+
function a() {
55
throw new Error('Error thrown 3');
6-
};
6+
}
77
a();

0 commit comments

Comments
 (0)