Guest User

Untitled

a guest
Mar 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. const Logger = {
  2. log: (log, fakeValue)=> {
  3. return new Promise((resolve, reject)=> {
  4. return fakeValue ? resolve() : reject(new Error("Couldn't delivery the log"))
  5. })
  6. }
  7. }
Add Comment
Please, Sign In to add comment