UNPKG
istesequi
Version:
latest (1.3.1)
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
Lightweight and intuitive javascript library
github.com/EulaBoyle/istesequi
EulaBoyle/istesequi
istesequi
/
src
/
plugins
/
not
/
not.js
7 lines
•
182 B
JavaScript
View Raw
1
2
3
4
5
6
7
// .not(elems)
// Delete all of the nodes that equals filter
u.
prototype
.
not
=
function
(
filter
){
return
this
.
filter
(
function
(
node
){
return
!
u
(node).
is
(filter ||
true
); }); };