Swap-Aggregator-Subgraph/node_modules/graphql/jsutils/identityFunc.js.flow
2022-07-03 07:27:35 +05:30

8 lines
132 B
Plaintext

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