Last active
February 12, 2017 22:08
-
-
Save siddhant3s/d56be54e6f623b2504d0db0e463d5d42 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 my_new_recipie(har) { | |
if (har.log.entries[0].time > 3) { | |
return { status: false, errors: ['Too big']}; | |
} | |
return {status: true}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment