Ignore:
Timestamp:
01/21/25 03:08:24 (3 days 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/index.js

    r0c6b92a r79a0317  
     1/*! chokidar - MIT License (c) 2012 Paul Miller (paulmillr.com) */
    12import { stat as statcb } from 'fs';
    23import { stat, readdir } from 'fs/promises';
     
    428429    }
    429430    emitWithAll(event, args) {
    430         this.emit(...args);
     431        this.emit(event, ...args);
    431432        if (event !== EV.ERROR)
    432             this.emit(EV.ALL, ...args);
     433            this.emit(EV.ALL, event, ...args);
    433434    }
    434435    // Common helpers
     
    450451        if (opts.cwd)
    451452            path = sysPath.relative(opts.cwd, path);
    452         const args = [event, path];
     453        const args = [path];
    453454        if (stats != null)
    454455            args.push(stats);
     
    461462        if (opts.atomic) {
    462463            if (event === EV.UNLINK) {
    463                 this._pendingUnlinks.set(path, args);
     464                this._pendingUnlinks.set(path, [event, ...args]);
    464465                setTimeout(() => {
    465466                    this._pendingUnlinks.forEach((entry, path) => {
     
    472473            }
    473474            if (event === EV.ADD && this._pendingUnlinks.has(path)) {
    474                 event = args[0] = EV.CHANGE;
     475                event = EV.CHANGE;
    475476                this._pendingUnlinks.delete(path);
    476477            }
     
    479480            const awfEmit = (err, stats) => {
    480481                if (err) {
    481                     event = args[0] = EV.ERROR;
    482                     args[1] = err;
     482                    event = EV.ERROR;
     483                    args[0] = err;
    483484                    this.emitWithAll(event, args);
    484485                }
    485486                else if (stats) {
    486487                    // if stats doesn't exist the file must have been deleted
    487                     if (args.length > 2) {
    488                         args[2] = stats;
     488                    if (args.length > 1) {
     489                        args[1] = stats;
    489490                    }
    490491                    else {
     
    796797}
    797798export default { watch, FSWatcher };
    798 //# sourceMappingURL=index.js.map
Note: See TracChangeset for help on using the changeset viewer.