Skip to content

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
douglascrockford committed Oct 19, 2021
1 parent 24b0193 commit 04aa2ee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions parseq.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ function check_requestors(requestor_array, factory_name) {
// takes wun or two arguments: 'callback' and optionally 'initial_value'.

if (requestor_array.some(function (requestor) {
return (
typeof requestor !== "function"
|| requestor.length < 1
|| requestor.length > 2
);
return (
typeof requestor !== "function"
|| requestor.length < 1
|| requestor.length > 2
);
})) {
throw make_reason(
factory_name,
Expand Down

0 comments on commit 04aa2ee

Please sign in to comment.