Skip to content

Instantly share code, notes, and snippets.

@eriwen
Created November 22, 2014 18:57
Show Gist options
  • Save eriwen/5157b7ef517c49a4c3a1 to your computer and use it in GitHub Desktop.
Save eriwen/5157b7ef517c49a4c3a1 to your computer and use it in GitHub Desktop.
Return true if called from context within strict mode.
/**
* Return true if called from context within strict mode.
*/
function isStrictMode() {
return (eval("var __temp = null"), (typeof __temp === "undefined")); // jshint ignore:line
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment