source: imaps-frontend/node_modules/rollup/dist/shared/fsevents-importer.js@ 0c6b92a

main
Last change on this file since 0c6b92a was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago

Pred finalna verzija

  • Property mode set to 100644
File size: 884 bytes
Line 
1/*
2 @license
3 Rollup.js v4.27.4
4 Sat, 23 Nov 2024 06:59:50 GMT - commit e805b546405a4e6cfccd3fe73e9f4df770023824
5
6 https://github.com/rollup/rollup
7
8 Released under the MIT License.
9*/
10'use strict';
11
12let fsEvents;
13let fsEventsImportError;
14async function loadFsEvents() {
15 try {
16 ({ default: fsEvents } = await import('fsevents'));
17 }
18 catch (error) {
19 fsEventsImportError = error;
20 }
21}
22// A call to this function will be injected into the chokidar code
23function getFsEvents() {
24 if (fsEventsImportError)
25 throw fsEventsImportError;
26 return fsEvents;
27}
28
29const fseventsImporter = /*#__PURE__*/Object.defineProperty({
30 __proto__: null,
31 getFsEvents,
32 loadFsEvents
33}, Symbol.toStringTag, { value: 'Module' });
34
35exports.fseventsImporter = fseventsImporter;
36exports.loadFsEvents = loadFsEvents;
37//# sourceMappingURL=fsevents-importer.js.map
Note: See TracBrowser for help on using the repository browser.