/** * Function which returns what it receives. * * @param {any} x Value given. * * @returns {any} * @category Functional */ export default function passthru(x: any): any;