mirror of
https://github.com/rjNemo/federation
synced 2026-06-09 03:36:38 +00:00
6 lines
107 B
JavaScript
6 lines
107 B
JavaScript
/**
|
|
* Returns the first argument it receives.
|
|
*/
|
|
export default function identityFunc(x) {
|
|
return x;
|
|
}
|