Returns a selection object that lazily represents a property with the name within the treespace element (or document).
Calling [get]MemberSelector#get returns the property in the specified element. Calling MemberSelector#set updates the property and calling MemberSelector#delete
deletes it.
MemberSelector instances are used as the target of the proxy object returned by member
Example
import { MemberSelector } from'deleight/proxy/selector'; document.body.innerHTML = ` <div>I am a div</div> <p>I am a paragraph</p> <section>I am a section</section> <article>I am an article</article> `; constslct = newMemberSelector('textContent', document.body); console.log(slct.get('div')); // I am a div
Returns a selection object that lazily represents a property with the name within the
treespace
element (or document). Calling [get]MemberSelector#get returns the property in the specified element.Calling MemberSelector#set updates the property and calling MemberSelector#delete deletes it.
MemberSelector instances are used as the target of the proxy object returned by member
Example