Skip to content

Instantly share code, notes, and snippets.

@branch14
Last active December 22, 2015 10:18
Show Gist options
  • Save branch14/dce8a1fe3238714a0801 to your computer and use it in GitHub Desktop.
Save branch14/dce8a1fe3238714a0801 to your computer and use it in GitHub Desktop.
Promise = require('bluebird')
cached = null
module.exports = (args) ->
return cached if cached?
cached = Promise.resolve(args)
unless module.parent?
require('./cachedPromise')('hello 1').then(console.log)
require('./cachedPromise')('hello 2').then(console.log)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment