Skip to content

Instantly share code, notes, and snippets.

@nicholaswmin
Created May 7, 2018 12:40
Show Gist options
  • Save nicholaswmin/5f5baa583e8c8e57701f860d5cf64bea to your computer and use it in GitHub Desktop.
Save nicholaswmin/5f5baa583e8c8e57701f860d5cf64bea to your computer and use it in GitHub Desktop.
const storedToken = null
module.exports = () => {
if (storedToken)
return storedToken
return fetch('./login')
.then(token => {
storedToken = token
return storedToken
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment