sam522's picture
node
d4b85c0
raw
history blame contribute delete
99 Bytes
/**
* Returns the first argument it receives.
*/
export function identityFunc(x) {
return x;
}