Sha256: 2f05b4bf53185c780dc2da51e2f75cf85d5e0fefcb6e9c6f1b04b0a4f94f5392
Contents?: true
Size: 626 Bytes
Versions: 49
Compression:
Stored size: 626 Bytes
Contents
import { Observable } from '../Observable'; import { finalize } from '../operators/finalize'; /** * Returns an Observable that mirrors the source Observable, but will call a specified function when * the source terminates on complete or error. * @param {function} callback Function to be called when source terminates. * @return {Observable} An Observable that mirrors the source, but will call the specified function on termination. * @method finally * @owner Observable */ export function _finally<T>(this: Observable<T>, callback: () => void): Observable<T> { return finalize(callback)(this) as Observable<T>; }
Version data entries
49 entries across 49 versions & 4 rubygems