I once think jQuery is just normalizing all these functions, before I go down in jQuery code and did the benchmarking myself.
jQuery is using pure syntax iteration in its .each() and there is no difference between $.each() and $.fn.each(), just an alias and omission of the 1st argument.
Even native supported array functions takes 120X - 150X more times of syntax iterations'.
It's too much cost for this feature, I guess I will not even put .every() in my code at all.
Declaring a boolean in scope is very much enough for it.
Thanks for all the reply. :)