Skip to content

Instantly share code, notes, and snippets.

@boutell
Last active January 30, 2017 23:27
Show Gist options
  • Save boutell/ba8cd675ba5bee0f240c26620726c713 to your computer and use it in GitHub Desktop.
Save boutell/ba8cd675ba5bee0f240c26620726c713 to your computer and use it in GitHub Desktop.
let firstStep = null;
if (options.count !== false) {
// Create a dummy promise
firstStep = Promise.resolve(true);
} else {
// Do actual work
firstStep = q.clone().count(name + '.id')... // etc.
}
return firstStep.then(... more promises go down ...)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment