Changeset 79a0317 for imaps-frontend/node_modules/chokidar/esm/handler.js
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/chokidar/esm/handler.js
r0c6b92a r79a0317 12 12 export const isMacos = pl === 'darwin'; 13 13 export const isLinux = pl === 'linux'; 14 export const isFreeBSD = pl === 'freebsd'; 14 15 export const isIBMi = osType() === 'OS400'; 15 16 export const EVENTS = { … … 360 361 this.fsw._emit(EV.CHANGE, file, newStats); 361 362 } 362 if ((isMacos || isLinux ) && prevStats.ino !== newStats.ino) {363 if ((isMacos || isLinux || isFreeBSD) && prevStats.ino !== newStats.ino) { 363 364 this.fsw._closeFile(path); 364 365 prevStats = newStats; … … 627 628 } 628 629 } 629 //# sourceMappingURL=handler.js.map
Note:
See TracChangeset
for help on using the changeset viewer.