summaryrefslogtreecommitdiff
path: root/school/node_modules/graphql/jsutils/identityFunc.js.flow
blob: a37961eb18e73ba80d6d118f22199dc043197951 (plain)
1
2
3
4
5
6
7
// @flow strict
/**
 * Returns the first argument it receives.
 */
export default function identityFunc<T>(x: T): T {
  return x;
}