Methods
(static) selector(selectorString) → {Array}
Returns an array path from a string selector
Parameters:
Name | Type | Description |
---|---|---|
selectorString |
String | A space separated series of tag names |
Returns:
Path array used to deeply select inside of Immutable Nux vDOM objects
- Type
- Array
Example
selector('div#foo form#bar input#baz');
// returns ['div#foo', 'form#bar', 'input#baz']