blob: daf23914a8e77b8816663acd32de768072daa056 [file] [log] [blame]
/**
* Returns the first argument it receives.
*/
export default function identityFunc(x) {
return x;
}