Is there a way to limit the number of allowed nesting levels?
Example: limit to 2 levels.
hello
You can use pull option.
"pull": function(event) {
console.log(event);
var itemE = event.item;
// please get deep
if(deep > maxDeep) return false;
return true;
},
"deep , maxDeep"
How do I find it?
Most helpful comment
hello
You can use pull option.