Skip to content

Commit 4baa837

Browse files
chore: fix EditorConfig lint errors
PR-URL: #7696 Closes: #7694 Co-authored-by: Athan Reines <kgryte@gmail.com> Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent f3dfedc commit 4baa837

File tree

1 file changed

+17
-17
lines changed
  • lib/node_modules/@stdlib/utils/merge/examples

1 file changed

+17
-17
lines changed

lib/node_modules/@stdlib/utils/merge/examples/index.js

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,21 @@ var out = merge( {}, target, source );
5353

5454
console.dir( out );
5555
/* =>
56-
{
57-
'a': 'beep',
58-
'b': 3.141592653589793,
59-
'c': {
60-
'c1': 'bap',
61-
'c2': false,
62-
'c3': {
63-
'c3a': [ 1, 2 ],
64-
'c3b': 5,
65-
'c3c': 'bop'
66-
},
67-
'c4': 1337,
68-
'c5': <Date>
69-
},
70-
'd': [ 4, 5, 6 ],
71-
'e': true
72-
}
56+
{
57+
'a': 'beep',
58+
'b': 3.141592653589793,
59+
'c': {
60+
'c1': 'bap',
61+
'c2': false,
62+
'c3': {
63+
'c3a': [ 1, 2 ],
64+
'c3b': 5,
65+
'c3c': 'bop'
66+
},
67+
'c4': 1337,
68+
'c5': <Date>
69+
},
70+
'd': [ 4, 5, 6 ],
71+
'e': true
72+
}
7373
*/

0 commit comments

Comments
 (0)