( value )
| 8256 | } |
| 8257 | |
| 8258 | function classesToArray( value ) { |
| 8259 | if ( Array.isArray( value ) ) { |
| 8260 | return value; |
| 8261 | } |
| 8262 | if ( typeof value === "string" ) { |
| 8263 | return value.match( rnothtmlwhite ) || []; |
| 8264 | } |
| 8265 | return []; |
| 8266 | } |
| 8267 | |
| 8268 | jQuery.fn.extend( { |
| 8269 | addClass: function( value ) { |
no outgoing calls
no test coverage detected
searching dependent graphs…