Plato on Github
Report Home
src/effects/animatedSelector.js
Maintainability
88.72
Lines of code
15
Difficulty
5.37
Estimated Errors
0.06
Function weight
By Complexity
By SLOC
define( [ "../core", "../selector", "../effects" ], function( jQuery ) { "use strict"; jQuery.expr.pseudos.animated = function( elem ) { return jQuery.grep( jQuery.timers, function( fn ) { return elem === fn.elem; } ).length; }; } );