Skip to content

Instantly share code, notes, and snippets.

View PradeepJaiswar's full-sized avatar

PradeepJaiswar PradeepJaiswar

  • upstox.com
  • Mumbai
  • 00:57 (UTC -12:00)
View GitHub Profile
@surajhell88
surajhell88 / README.md
Last active May 19, 2018 09:07
Simple Promise Implementation

Simple Promise Implementation

A simple javascript implmentation of promise object. It isn't the best solution but does solve the given problem statement. The probable todo items/improvements would be to refer MDN doc for Promise

Listing a few here:

  1. .all(iterable)
  2. .reject(promiseInstance)
  3. .resolve(promiseInstance)
  4. .finally(callback)