Files
my_site/node_modules/graphql/jsutils/identityFunc.mjs
2026-03-24 14:30:59 +08:00

7 lines
99 B
JavaScript

/**
* Returns the first argument it receives.
*/
export function identityFunc(x) {
return x;
}