FLUJOS/VISUALIZACION/node_modules/graphql/jsutils/identityFunc.js.flow
2025-11-07 00:06:12 +01:00

7 lines
132 B
Text
Executable file

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