Skip to content

Adds named arguments to function declarations #46

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/step.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function Step() {
pending, counter, results, lock;

// Define the main callback that's given as `this` to the steps.
function next() {
function next(err, data) {
counter = pending = 0;

// Check if there are no steps left
Expand Down Expand Up @@ -70,7 +70,7 @@ function Step() {
var index = 1 + counter++;
pending++;

return function () {
return function (err, data) {
pending--;
// Compress the error from any result to the first argument
if (arguments[0]) {
Expand Down Expand Up @@ -105,7 +105,7 @@ function Step() {
return function () {
var index = counter++;
pending++;
return function () {
return function (err, data) {
pending--;
// Compress the error from any result to the first argument
if (arguments[0]) {
Expand Down