Files
med-notes/.pnpm-store/v10/files/38/f14a4041122bad91ac64be3625ebbf2ff2ec1ce8c2e61a10398982bd6a2236f597b6ca4c610fa1fcba431d2a020b3cae1aca7598013d8a8f1cec4e21418ab1
2025-05-09 05:30:08 +02:00

38 lines
884 B
Plaintext

/*
@license
Rollup.js v4.39.0
Wed, 02 Apr 2025 04:49:00 GMT - commit 5c001245779063abac3899aa9d25294ab003581b
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