mirror of
https://github.com/swc-project/swc.git
synced 2025-01-04 19:47:10 +03:00
15 lines
240 B
JavaScript
15 lines
240 B
JavaScript
|
if (some_condition()) {
|
||
|
if (some_other_condition()) {
|
||
|
do_something();
|
||
|
} else {
|
||
|
alternate();
|
||
|
}
|
||
|
} else {
|
||
|
alternate();
|
||
|
}
|
||
|
if (some_condition()) {
|
||
|
if (some_other_condition()) {
|
||
|
do_something();
|
||
|
}
|
||
|
}
|