Sha256: 398f5391ff8365e658f8e23d93183138a496838c16b01a976b79e4d2a32a6421
Contents?: true
Size: 549 Bytes
Versions: 49
Compression:
Stored size: 549 Bytes
Contents
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(callback) { return finalize(callback)(this); } //# sourceMappingURL=finally.js.map
Version data entries
49 entries across 49 versions & 4 rubygems