@testim/testim-cli
Version:
Command line interface for running Testing on you CI
9 lines (8 loc) • 327 B
JavaScript
/**
* Hides the identity of an observable sequence.
* @returns {Observable} An observable sequence that hides the identity of the source sequence.
*/
observableProto.asObservable = function () {
var source = this;
return new AnonymousObservable(function (o) { return source.subscribe(o); }, source);
};