Functions
Browse all available utility functions by category
seq
chain
Creates a lodash wrapper instance that wraps value with explicit method chain sequences enabled.
Example:
const users = [seq
tap
This method invokes interceptor and returns value.
Example:
tap([1, 2, 3], (array) => array.pop()); // [1, 2]seq
thru
This method is like tap except that it returns the result of interceptor.
Example:
thru([1, 2, 3], (array) => array.reverse()); // [3, 2, 1]