(v)
| 44 | |
| 45 | // Helper function checks if its argument is a string-like type |
| 46 | var isString = function (v) { return typeof v === 'string' || v instanceof String; }; |
| 47 | |
| 48 | // Helper function allows elements and string selectors to be used |
| 49 | // interchangeably. In either case an element is returned. This allows us to |
no outgoing calls
no test coverage detected