Class: DataMaps::Then::Filter

Inherits:
Base show all
Defined in:
lib/data_maps/then/filter.rb

Overview

A then to filter values

Since:

  • 0.0.1

Instance Attribute Summary

Attributes inherited from Executable

#@option, #option

Instance Method Summary collapse

Methods inherited from Executable

#initialize, valid_collection?

Constructor Details

This class inherits a constructor from DataMaps::Executable

Instance Method Details

#execute(data) ⇒ mixed

Return the original data

Parameters:

  • data (mixed)

Returns:

  • (mixed)

    data

Since:

  • 0.0.1



11
12
13
# File 'lib/data_maps/then/filter.rb', line 11

def execute(data)
  data
end