Skip to content

Instantly share code, notes, and snippets.

@elbow-jason
Created March 10, 2017 15:46
Show Gist options
  • Save elbow-jason/8e30e40432c2d056afa34274f8b18813 to your computer and use it in GitHub Desktop.
Save elbow-jason/8e30e40432c2d056afa34274f8b18813 to your computer and use it in GitHub Desktop.
export function promiseResolved(value : any) {
return new Promise((resolve, reject) => {
resolve(value)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment