Skip to main content
Module

x/lodash_es/mod.ts>identity

lodash for deno use
Latest
function identity
import { identity } from "https://deno.land/x/lodash_es@v0.0.2/mod.ts";

This method returns the first argument it receives.

Examples

var object = { 'a': 1 };

console.log(_.identity(object) === object); // => true

Parameters

value

Any value.