Blame view

天文台pc/tianwentai-ui/node_modules/rollup/dist/shared/fsevents-importer.js 884 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  /*
    @license
  	Rollup.js v4.60.1
  	Mon, 30 Mar 2026 04:32:12 GMT - commit ae871d762f6bbeb4320d28fe179211168f27a434
  
  	https://github.com/rollup/rollup
  
  	Released under the MIT License.
  */
  'use strict';
  
  let fsEvents;
  let fsEventsImportError;
  async function loadFsEvents() {
      try {
          ({ default: fsEvents } = await import('fsevents'));
      }
      catch (error) {
          fsEventsImportError = error;
      }
  }
  // A call to this function will be injected into the chokidar code
  function getFsEvents() {
      if (fsEventsImportError)
          throw fsEventsImportError;
      return fsEvents;
  }
  
  const fseventsImporter = /*#__PURE__*/Object.defineProperty({
      __proto__: null,
      getFsEvents,
      loadFsEvents
  }, Symbol.toStringTag, { value: 'Module' });
  
  exports.fseventsImporter = fseventsImporter;
  exports.loadFsEvents = loadFsEvents;
  //# sourceMappingURL=fsevents-importer.js.map