@storm-stack/utilities
Version:
This package includes various base utility class and various functions to assist in the development process.
11 lines (10 loc) • 324 B
TypeScript
/**
* This method returns the first argument provided to it.
*
* @remarks
* For more info, please see {@link https://lodash.com/docs/4.17.15#identity | the original Lodash documentation}.
*
* @param value - The value to return.
* @returns The value provided.
*/
export declare function argIdentity(value: any): any;