mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-11-29 08:49:40 +00:00
8 lines
132 B
Plaintext
8 lines
132 B
Plaintext
// @flow strict
|
|
/**
|
|
* Returns the first argument it receives.
|
|
*/
|
|
export default function identityFunc<T>(x: T): T {
|
|
return x;
|
|
}
|