Skip to content

Instantly share code, notes, and snippets.

@agutoli
Last active February 9, 2017 20:06
Show Gist options
  • Save agutoli/c6717457aadf78c819d793f9d9d27402 to your computer and use it in GitHub Desktop.
Save agutoli/c6717457aadf78c819d793f9d9d27402 to your computer and use it in GitHub Desktop.
const VerificaSeEstaLogado = () => Promise.resolve('sim');
const VerificaTermo = () => Promise.resolve('sim');
const RedirectToDashboard = () => { ... };
VerificaSeEstaLogado()
.then(VerificaTermo)
.then(RedirectToDashboard);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment