Skip to content

Commit a533a4f

Browse files
committed
added newlines after each function
1 parent f797130 commit a533a4f

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -640,9 +640,11 @@ Other Style Guides
640640
function f1(a) {
641641
a = 1;
642642
}
643+
643644
function f2(a) {
644645
if (!a) { a = 1; }
645646
}
647+
646648
function f3(obj) {
647649
obj.key = 1;
648650
};
@@ -651,8 +653,10 @@ Other Style Guides
651653
function f4(a) {
652654
const b = a || 1;
653655
}
656+
654657
function f5(a = 1) {
655658
}
659+
656660
function f6(obj) {
657661
const key = Object.prototype.hasOwnProperty.call(obj, 'key') ? obj.key : 1;
658662
};

0 commit comments

Comments
 (0)