Skip to content

Instantly share code, notes, and snippets.

@chorr
Created January 16, 2012 12:40
Show Gist options
  • Save chorr/1620688 to your computer and use it in GitHub Desktop.
Save chorr/1620688 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Listing 3.3</title>
</head>
<body>
<ul id="results"></ul>
<script type="text/javascript">
function stealthCheck(){
assert(stealth(),
"We'll never get below the return, but that's OK!");
return true;
function stealth(){ return true; }
}
stealthCheck();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment