* Extracts an array of values. Assumes the source data has already been * reduced as needed (e.g., by an upstream Aggregate transform). * @constructor * @param {object} params - The parameters for this operator. * @param {function(object): *} params.field - The domain field to extract. * @param
(params)
| 118687 | * comparator function for sorting the values. The comparator will be |
| 118688 | * applied to backing tuples prior to value extraction. |
| 118689 | */ function Values(params) { |
| 118690 | (0, _vegaDataflow.Transform).call(this, null, params); |
| 118691 | } |
| 118692 | (0, _vegaUtil.inherits)(Values, (0, _vegaDataflow.Transform), { |
| 118693 | transform (_, pulse) { |
| 118694 | const run = !this.value || _.modified("field") || _.modified("sort") || pulse.changed() || _.sort && pulse.modified(_.sort.fields); |
no outgoing calls
no test coverage detected