-
Notifications
You must be signed in to change notification settings - Fork 0
Functions
nntrn edited this page Jan 19, 2024
·
1 revision
def del_long($lenarray;$lenstring):
del(.[(
to_entries
| map(if ((.value|type)=="array" and (.value|length) > ($lenarray|tonumber)) then .key
elif ((.value|type)=="string" and (.value|length)>($lenstring|tonumber)) then .key
else null end | select (length > 0))
)[]]
);
map(del_long(1;30))