/**
 * Return same value
 * @description
 * Function that returns provided value
 * @category Function
 */
export function identity<T>(value: T) {
  return value;
}
