* Proxy the value of another operator as a pure signal value. * Ensures no tuples are propagated. * @constructor * @param {object} params - The parameters for this operator. * @param {*} params.value - The value to proxy, becomes the value of this operator.
(params)
| 118256 | * @param {object} params - The parameters for this operator. |
| 118257 | * @param {*} params.value - The value to proxy, becomes the value of this operator. |
| 118258 | */ function Proxy(params) { |
| 118259 | (0, _vegaDataflow.Transform).call(this, null, params); |
| 118260 | } |
| 118261 | (0, _vegaUtil.inherits)(Proxy, (0, _vegaDataflow.Transform), { |
| 118262 | transform (_, pulse) { |
| 118263 | this.value = _.value; |