Skip to content

Instantly share code, notes, and snippets.

@parro-it
Created October 13, 2016 07:38
Show Gist options
  • Save parro-it/be310f113c359647d1d84b6772667c7c to your computer and use it in GitHub Desktop.
Save parro-it/be310f113c359647d1d84b6772667c7c to your computer and use it in GitHub Desktop.
const slice = unthis(Array.prototype.slice)
console.log(slice(0, -1, [1,2,3]));
// <- [1,2]
const unthis = method => (...args) => method.apply(args.slice(-1)[0], args.slice(0, -1));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment