* Count regexp-defined pattern occurrences in a text field. * @constructor * @param {object} params - The parameters for this operator. * @param {function(object): *} params.field - An accessor for the text field. * @param {string} [params.pattern] - RegExp string defining the text pattern. * @
(params)
| 116543 | * @param {string} [params.case] - One of 'lower', 'upper' or null (mixed) case. |
| 116544 | * @param {string} [params.stopwords] - RegExp string of words to ignore. |
| 116545 | */ function CountPattern(params) { |
| 116546 | (0, _vegaDataflow.Transform).call(this, null, params); |
| 116547 | } |
| 116548 | CountPattern.Definition = { |
| 116549 | "type": "CountPattern", |
| 116550 | "metadata": { |
nothing calls this directly
no outgoing calls
no test coverage detected