Skip to content

Instantly share code, notes, and snippets.

@jordic
Last active December 14, 2016 05:52
Show Gist options
  • Save jordic/c98afe24a9ab3ca2bcfe22b3682b2189 to your computer and use it in GitHub Desktop.
Save jordic/c98afe24a9ab3ca2bcfe22b3682b2189 to your computer and use it in GitHub Desktop.
Fake Promise
function fakePromise(delay: number, val:number): Promise<number> {
return new Promise((resolve, reject) => {
setTimeout(() => {
console.log('Promise resolved', val);
resolve(val);
}, delay);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment