Skip to content
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