r2dec-js icon indicating copy to clipboard operation
r2dec-js copied to clipboard

Make curly brackets location configurable

Open elicn opened this issue 7 years ago • 0 comments

Some programmers like their curly brackets (braces) on the same line with the statement, others like them on separated lines; please make this configurable.

Ex 1:

if (condition) {
  // ...
}

Ex 2:

if (condition)
{
  // ...
}

elicn avatar Jul 30 '18 19:07 elicn