Module

x/lodash_es/src/seq.js

lodash for deno use
Latest
import * as mod from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/seq.js";

Variables

This method is the wrapper version of _.at.

Functions

Creates a lodash wrapper instance that wraps value with explicit method chain sequences enabled. The result of such sequences must be unwrapped with _#value.

Executes the chain sequence and returns the wrapped result.

Creates a lodash object which wraps value to enable implicit method chain sequences. Methods that operate on and return arrays, collections, and functions can be chained together. Methods that retrieve a single value or may return a primitive value will automatically end the chain sequence and return the unwrapped value. Otherwise, the value must be unwrapped with _#value.

Gets the next value on a wrapped object following the iterator protocol.

Creates a clone of the chain sequence planting value as the wrapped value.

This method is the wrapper version of _.reverse.

This method invokes interceptor and returns value. The interceptor is invoked with one argument; (value). The purpose of this method is to "tap into" a method chain sequence in order to modify intermediate results.

This method is like _.tap except that it returns the result of interceptor. The purpose of this method is to "pass thru" values replacing intermediate results in a method chain sequence.

Enables the wrapper to be iterable.

Executes the chain sequence to resolve the unwrapped value.

Executes the chain sequence to resolve the unwrapped value.

Executes the chain sequence to resolve the unwrapped value.

Creates a lodash wrapper instance with explicit method chain sequences enabled.