federation/gateway/node_modules/graphql/jsutils/identityFunc.js.flow
2020-11-14 16:43:58 +01:00

7 lines
132 B
Text

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