From d55b767039605256c736166a942a9138e3eacfd7 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Sun, 29 Jun 2025 11:49:28 -0700 Subject: remove dev node_modules (oops) --- node_modules/rxjs/dist/esm/internal/util/lift.js | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 node_modules/rxjs/dist/esm/internal/util/lift.js (limited to 'node_modules/rxjs/dist/esm/internal/util/lift.js') diff --git a/node_modules/rxjs/dist/esm/internal/util/lift.js b/node_modules/rxjs/dist/esm/internal/util/lift.js deleted file mode 100644 index 280b95f..0000000 --- a/node_modules/rxjs/dist/esm/internal/util/lift.js +++ /dev/null @@ -1,20 +0,0 @@ -import { isFunction } from './isFunction'; -export function hasLift(source) { - return isFunction(source === null || source === void 0 ? void 0 : source.lift); -} -export function operate(init) { - return (source) => { - if (hasLift(source)) { - return source.lift(function (liftedSource) { - try { - return init(liftedSource, this); - } - catch (err) { - this.error(err); - } - }); - } - throw new TypeError('Unable to lift unknown Observable type'); - }; -} -//# sourceMappingURL=lift.js.map \ No newline at end of file -- cgit v1.2.3