Skip to content

Instantly share code, notes, and snippets.

@ruxandrafed
Forked from adatta02/partial_bind.js
Created March 29, 2018 16:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruxandrafed/d4fe9e5ded229571ea4424a507bab08a to your computer and use it in GitHub Desktop.
Save ruxandrafed/d4fe9e5ded229571ea4424a507bab08a to your computer and use it in GitHub Desktop.
function partial(fn /*, rest args */){
return fn.bind.apply(fn, Array.apply(null, arguments).slice(1));
}
const Logger = {
log(level, dateFormat, msg) {
console.log(level, dateFormat, msg);
}
};
const info = partial(Logger.log, "info", "ISO8601");
info("Application started");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment