Skip to content

Instantly share code, notes, and snippets.

@littlemooon
Last active April 20, 2018 14:07
Show Gist options
  • Save littlemooon/50eec2176f3304486e4047386c1de868 to your computer and use it in GitHub Desktop.
Save littlemooon/50eec2176f3304486e4047386c1de868 to your computer and use it in GitHub Desktop.
import memoize from 'memoizee'
export default function makeCallback() {
return memoize(
function(func, args) {
return function(additionalArgs) {
return func(...args, ...additionalArgs)
}
},
{ length: false }
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment