forked from LeenkxTeam/Kmake
11 lines
118 B
JavaScript
11 lines
118 B
JavaScript
'use strict';
|
|
|
|
// Set root member
|
|
let foo = true;
|
|
foo = false;
|
|
|
|
// Return outside of function
|
|
if (!foo) {
|
|
return;
|
|
}
|