github-pages-deploy-action/node_modules/graphql/jsutils/identityFunc.js.flow

9 lines
133 B
Plaintext
Raw Normal View History

2020-03-07 11:45:40 +08:00
// @flow strict
/**
* Returns the first argument it receives.
*/
export default function identityFunc<T>(x: T): T {
return x;
}