Skip to content

Instantly share code, notes, and snippets.

@st98
Created August 26, 2014 01:24
Show Gist options
  • Save st98/7455215b7ff912d8665f to your computer and use it in GitHub Desktop.
Save st98/7455215b7ff912d8665f to your computer and use it in GitHub Desktop.
function isStrict() {
try {
arguments.callee;
} catch (_) {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment