dict_filter [function]

dict_filter( dict[, callable] )

return a dict with the items that convert to boolean 'true', optionally preprocessed by a callable

dict_filter({ a = 0, b = 1 }); // returns {b=1}