Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • B bull
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 175
    • Issues 175
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 9
    • Merge requests 9
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • OptimalBits
  • bull
  • Merge requests
  • !1153

WIP: Replace bluebird function usages with native Promise

  • Review changes

  • Download
  • Email patches
  • Plain diff
Closed Administrator requested to merge github/fork/pc-jedi/dev-bluebird into develop Dec 09, 2018
  • Overview 9
  • Commits 4
  • Pipelines 0
  • Changes 28

Created by: pc-jedi

  • .return is a short hand by Bluebird. Bluebird .return If the ioredis client is created by the user without using Bluebird Promises the .return function is not available.
  • .spread is Bluebird implementation for destructuring an array of promises. Bluebird .spread It can be replaced by ES6 destructuring.
  • .timeout Bluebird .timeout
  • .map Bluebird .map
  • Promise.map replaced by Promise.resolve().map().
  • .reduce Bluebird .reduce
  • .filter Bluebird .filter
  • .each Bluebird .each
  • .delay Bluebird .delay
  • Promise.delay Bluebird Promise.delay
  • .asCallback Bluebird .asCallback
  • .reflect Bluebird .reflect
  • Promise.promisify Bluebird Promise.promisify
  • Promise.method Bluebird Promise.method

Fix #1027 (closed)

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: github/fork/pc-jedi/dev-bluebird