( tokens )
| 818 | }; |
| 819 | |
| 820 | function toSelector( tokens ) { |
| 821 | var i = 0, |
| 822 | len = tokens.length, |
| 823 | selector = ""; |
| 824 | for ( ; i < len; i++ ) { |
| 825 | selector += tokens[ i ].value; |
| 826 | } |
| 827 | return selector; |
| 828 | } |
| 829 | |
| 830 | // Multifunctional method to get and set values of a collection |
| 831 | // The value/s can optionally be executed if it's a function |
no outgoing calls
no test coverage detected