Global

Type Definitions

AnyValue

values stored in a collection can be of any type
Source:

asyncTransformFunction(value) → {Promise.<AnyValue>}

An async function which transforms a value
Parameters:
Name Type Description
value AnyValue the value to be transformed
Source:
Returns:
a transformed value
Type
Promise.<AnyValue>

transformFunction(value) → {AnyValue}

A function which transforms a value
Parameters:
Name Type Description
value AnyValue the value to be transformed
Source:
Returns:
a transformed value
Type
AnyValue