r2dec-js
r2dec-js copied to clipboard
Make curly brackets location configurable
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)
{
// ...
}