We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Return the same (first) value.
Similar: ARGUMENTS, NOOP, IDENTITY, COMPARE.
function IDENTITY(v) // v: a value
const xasyncfn = require('extra-async-function'); await xasyncfn.IDENTITY(1); // → 1 await xasyncfn.IDENTITY(Promise.resolve('a')); // → 'a'