install.mjs (--install/--build-only/--uninstall/--openclaw-profile-path), tsconfig outDir dist/fabric, package.json openclaw file dep + main. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
7 lines
123 B
JavaScript
7 lines
123 B
JavaScript
export function on(obj, ev, fn) {
|
|
obj.on(ev, fn);
|
|
return function subDestroy() {
|
|
obj.off(ev, fn);
|
|
};
|
|
}
|