UNPKG

istesequi

Version:

Lightweight and intuitive javascript library

10 lines (8 loc) 211 B
/** * Find all the nodes children of the current ones matched by a selector */ u.prototype.find = function(selector) { return this.join(function(node){ return u(selector || "*", node).nodes; }); };