1.0.1 • Published 8 years ago

es6-DOM-closest v1.0.1

Weekly downloads
2
License
BSD-3-Clause
Repository
github
Last release
8 years ago

#es6-DOM-closest

Returns the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree. A simple replacement for jQuery's .closest(). ##Example

    import DOM from "./node_modules/es6-DOM-closest/dist/main";
    console.log( DOM.closest(document.body, "body") ); // => <body></body>