Files
Shifted/node_modules/graphql/jsutils/identityFunc.mjs
2026-02-10 01:14:19 +00:00

7 lines
99 B
JavaScript

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