Created
February 12, 2017 21:51
-
-
Save siddhant3s/856c0ea64025b58a7cb6b3e157613b5b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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