UNPKG
quxt
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
Lodash but OVERPOWERED!
github.com/quxapp/quxt
quxapp/quxt
quxt
/
arrays
/
filter.js
5 lines
(4 loc)
•
81 B
JavaScript
View Raw
1
2
3
4
5
function filter(list,
fun
) {
return
list.filter(
fun
)
} module.exports = filter