Sha256: 1e353411bb999409fab272de679d9ddd3ee3db2ca68ea029bfcaeca02bf3e4ff
Contents?: true
Size: 615 Bytes
Versions: 49
Compression:
Stored size: 615 Bytes
Contents
/** PURE_IMPORTS_START .._operators_finalize PURE_IMPORTS_END */ 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