UNPKG

@stryke/helpers

Version:

A package containing miscellaneous helper functions that are used across many different Storm Software projects.

11 lines (10 loc) 324 B
/** * 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;