Skip to content

Instantly share code, notes, and snippets.

@marcusandre
Created November 9, 2015 20:52
Show Gist options
  • Save marcusandre/486e4cfe641928481c4b to your computer and use it in GitHub Desktop.
Save marcusandre/486e4cfe641928481c4b to your computer and use it in GitHub Desktop.
get last argument from arguments list if it is a function
function dummy () {
var args = [].slice.call(arguments)
var fn = typeof args[args.length - 1] === 'function' ? args.pop() : null
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment