UNPKG

@polkadot/react-api

Version:

A collection of RxJs React components the Polkadot JS API

25 lines (21 loc) 678 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = triggerChange; var _util = require("@polkadot/util"); // Copyright 2017-2020 @polkadot/react-api authors & contributors // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. function triggerChange(value, ...callOnResult) { if (!callOnResult || !callOnResult.length) { return; } callOnResult.forEach(callOnResult => { if ((0, _util.isObservable)(callOnResult)) { callOnResult.next(value); } else if ((0, _util.isFunction)(callOnResult)) { callOnResult(value); } }); }