Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Created June 4, 2015 04:45
Show Gist options
  • Save ajcrites/fa65949ff9a262327ab8 to your computer and use it in GitHub Desktop.
Save ajcrites/fa65949ff9a262327ab8 to your computer and use it in GitHub Desktop.
Promise.resolve().then(
() => Promise.resolve(">").then(
() => Promise.resolve(">>").then(
() => Promise.resolve(">>>").then(
() => Promise.resolve(">>>>").then(
() => Promise.resolve(">>>>>").then(
() => Promise.resolve(">>>>>>").then(
() => Promise.resolve(">>>>>>>").then(
() => Promise.resolve(">>>>>>>").then(
() => Promise.reject("get me out!")
)
)
)
)
)
)
)
)
).catch(exit => console.log(exit));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment