Show:

Class to search for a string in the array elements.

Methods

addModifierObservers

(
  • context
  • method
)

Function called when observers are supposed to be added.

Parameters:

  • context Class

    Context to add the observer to.

  • method String | Function

    Method to be called when observer is called.

modFun

(
  • item
  • value
)

Method called to modify a single element. Does a regex match with searchRegex and negates it based on negate value.

Parameters:

  • item Class

    The item to modify.

  • value Any

    The value to modfiy on.

modify

(
  • array
)

Method called to modify an entire array.

Parameters:

  • array Array

    The array to modify.

removeModifierObservers

(
  • context
  • method
)

Function called when observers are supposed to be removed.

Parameters:

  • context Class

    Context to add the observer to.

  • method String | Function

    Method to be called when observer is called.

Properties

addObserverToAll

Boolean

Set to true if a listener on all objects in the array should be added.

Default: true

groupType

String

Array modifier group type the modifier belongs to.

Default: "basic"

negate

Boolean

If set to true, all elements matching searchString will be removed, else all elements not matching searchString will be removed.

Default: false

priority

Number

Priority to run this modifier

Default: 1

property

String

Property the modifier applies on.

searchRegex

RegEx private

Search string regex object.

searchString

String

Search string.

type

String

Type of the array modifier.

Default: "basic"