
I have a structure like that, he. I tried to copy alex to same directory, the resulting structure will be like that.

In windows, I got 4 event with action 0 for each item. But in my laptop(m1 air) I get these events(I filtered change events for a clear output) which is not expected.

The code I used for testing:
var nsfw = require('nsfw');
var watcher1;
return nsfw('/Users/muratangin/Downloads/Academic Work', function(events) {
console.log(events.filter(e=>e.action != 2));
},{debounceMS: 1000}).then(function(watcher) {
watcher1 = watcher;
watcher.start();
console.log("initialized");
});

I have a structure like that, he. I tried to copy alex to same directory, the resulting structure will be like that.
In windows, I got 4 event with action 0 for each item. But in my laptop(m1 air) I get these events(I filtered change events for a clear output) which is not expected.
The code I used for testing: