Skip to content

Instantly share code, notes, and snippets.

@awellsndt
Created April 2, 2014 21:43
Show Gist options
  • Save awellsndt/9943819 to your computer and use it in GitHub Desktop.
Save awellsndt/9943819 to your computer and use it in GitHub Desktop.
deprecate
function deprecate(msg){
var err = new Error(),
stack = err.stack,
lines = stack.split('\n').slice(3)
console.log("Deprecated method "+msg+"\n"+ lines.join('\n'))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment