code formatting

This commit is contained in:
Mathias Polligkeit 2016-10-18 01:45:06 +02:00
parent 78f0c942bd
commit b5a9695746

View File

@ -53,8 +53,7 @@ function factory (type, config, load, typed) {
// `random(max)` or `random(size)`
if (isCollection(arg1)) {
size = arg1;
}
else {
} else {
max = arg1;
}
} else if (arguments.length === 2) {
@ -62,8 +61,7 @@ function factory (type, config, load, typed) {
if (isCollection(arg1)) {
size = arg1;
max = arg2;
}
else {
} else {
min = arg1;
max = arg2;
}