UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

12 lines • 306 B
import { operate } from '../util/lift'; export function finalize(callback) { return operate(function (source, subscriber) { try { source.subscribe(subscriber); } finally { subscriber.add(callback); } }); } //# sourceMappingURL=finalize.js.map