Guest User

Untitled

a guest
Jan 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. // Architecture 1
  2.  
  3. function callApi(x, y, z) {
  4. manipulate params
  5. manipulate params some more ...
  6. return fetch(...)
  7. .then(result => {
  8. if (result.status === ...) {
  9. handle status stuff
  10. }
  11. manipulate result
  12. manipulate result some more ...
  13. return manipulatedResult
  14. })
  15. }
Add Comment
Please, Sign In to add comment