NeahNew/node_modules/webdav/dist/node/compat/patcher.js
2025-05-03 14:17:46 +02:00

9 lines
185 B
JavaScript

import { HotPatcher } from "hot-patcher";
let __patcher = null;
export function getPatcher() {
if (!__patcher) {
__patcher = new HotPatcher();
}
return __patcher;
}