📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 19:55:22
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
node_modules
/
rxjs
/
dist
/
esm5
/
internal
/
operators
📍 /home/orkouolp/web/testing.orkobd/laravel/node_modules/rxjs/dist/esm5/internal/operators
🔄 Refresh
✏️
Editing: takeWhile.js
Writable
import { operate } from '../util/lift'; import { createOperatorSubscriber } from './OperatorSubscriber'; export function takeWhile(predicate, inclusive) { if (inclusive === void 0) { inclusive = false; } return operate(function (source, subscriber) { var index = 0; source.subscribe(createOperatorSubscriber(subscriber, function (value) { var result = predicate(value, index++); (result || inclusive) && subscriber.next(value); !result && subscriber.complete(); })); }); } //# sourceMappingURL=takeWhile.js.map
💾 Save Changes
❌ Cancel