Ignore:
Timestamp:
01/21/25 03:08:24 (2 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
0c6b92a
Message:

F4 Finalna Verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/chokidar/esm/handler.js

    r0c6b92a r79a0317  
    1212export const isMacos = pl === 'darwin';
    1313export const isLinux = pl === 'linux';
     14export const isFreeBSD = pl === 'freebsd';
    1415export const isIBMi = osType() === 'OS400';
    1516export const EVENTS = {
     
    360361                        this.fsw._emit(EV.CHANGE, file, newStats);
    361362                    }
    362                     if ((isMacos || isLinux) && prevStats.ino !== newStats.ino) {
     363                    if ((isMacos || isLinux || isFreeBSD) && prevStats.ino !== newStats.ino) {
    363364                        this.fsw._closeFile(path);
    364365                        prevStats = newStats;
     
    627628    }
    628629}
    629 //# sourceMappingURL=handler.js.map
Note: See TracChangeset for help on using the changeset viewer.