Skip to content

Instantly share code, notes, and snippets.

@siddhant3s
Created February 12, 2017 21:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save siddhant3s/856c0ea64025b58a7cb6b3e157613b5b to your computer and use it in GitHub Desktop.
Save siddhant3s/856c0ea64025b58a7cb6b3e157613b5b to your computer and use it in GitHub Desktop.
function verify_har(har) {
if (har.log) {
return {
status: false,
errors: [
'Too many 403 errors found',
],
};
}
return {status: true};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment