Module

x/lodash_es/src/lang.js

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

Variables

Checks if value is greater than other.

Checks if value is greater than or equal to other.

Checks if value is likely an arguments object.

Checks if value is classified as an Array object.

Checks if value is classified as an ArrayBuffer object.

Checks if value is a buffer.

Checks if value is classified as a Date object.

Checks if value is classified as a Map object.

Checks if value is classified as a RegExp object.

Checks if value is classified as a Set object.

Checks if value is classified as a typed array.

Checks if value is less than other.

Checks if value is less than or equal to other.

Functions

Casts value as an array if it's not one.

Creates a shallow clone of value.

This method is like _.clone except that it recursively clones value.

This method is like _.cloneWith except that it recursively clones value.

This method is like _.clone except that it accepts customizer which is invoked to produce the cloned value. If customizer returns undefined, cloning is handled by the method instead. The customizer is invoked with up to four arguments; (value [, index|key, object, stack]).

Checks if object conforms to source by invoking the predicate properties of source with the corresponding property values of object.

Performs a SameValueZero comparison between two values to determine if they are equivalent.

Checks if value is array-like. A value is considered array-like if it's not a function and has a value.length that's an integer greater than or equal to 0 and less than or equal to Number.MAX_SAFE_INTEGER.

This method is like _.isArrayLike except that it also checks if value is an object.

Checks if value is classified as a boolean primitive or object.

Checks if value is likely a DOM element.

Checks if value is an empty object, collection, map, or set.

Performs a deep comparison between two values to determine if they are equivalent.

This method is like _.isEqual except that it accepts customizer which is invoked to compare values. If customizer returns undefined, comparisons are handled by the method instead. The customizer is invoked with up to six arguments: (objValue, othValue [, index|key, object, other, stack]).

Checks if value is an Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, or URIError object.

Checks if value is a finite primitive number.

Checks if value is classified as a Function object.

Checks if value is an integer.

Checks if value is a valid array-like length.

Performs a partial deep comparison between object and source to determine if object contains equivalent property values.

This method is like _.isMatch except that it accepts customizer which is invoked to compare values. If customizer returns undefined, comparisons are handled by the method instead. The customizer is invoked with five arguments: (objValue, srcValue, index|key, object, source).

Checks if value is NaN.

Checks if value is a pristine native function.

Checks if value is null or undefined.

Checks if value is null.

Checks if value is classified as a Number primitive or object.

Checks if value is the language type of Object. (e.g. arrays, functions, objects, regexes, new Number(0), and new String(''))

Checks if value is object-like. A value is object-like if it's not null and has a typeof result of "object".

Checks if value is a plain object, that is, an object created by the Object constructor or one with a [[Prototype]] of null.

Checks if value is a safe integer. An integer is safe if it's an IEEE-754 double precision number which isn't the result of a rounded unsafe integer.

Checks if value is classified as a String primitive or object.

Checks if value is classified as a Symbol primitive or object.

Checks if value is undefined.

Checks if value is classified as a WeakMap object.

Checks if value is classified as a WeakSet object.

Converts value to an array.

Converts value to a finite number.

Converts value to an integer.

Converts value to an integer suitable for use as the length of an array-like object.

Converts value to a number.

Converts value to a plain object flattening inherited enumerable string keyed properties of value to own properties of the plain object.

Converts value to a safe integer. A safe integer can be compared and represented correctly.

Converts value to a string. An empty string is returned for null and undefined values. The sign of -0 is preserved.