blob: 5cf7c4c33b6cebbf4d0c5aa756309c92df03ed4f [file] [log] [blame]
// @flow strict
/**
* Returns the first argument it receives.
*/
export default function identityFunc<T>(x: T): T {
return x;
}