2023-11-09 18:47:11 +01:00

8 lines
132 B
Plaintext

// @flow strict
/**
* Returns the first argument it receives.
*/
export default function identityFunc<T>(x: T): T {
return x;
}